diff -C 2 -r AtlasTest.1.0.1/C/src/Cgendat.h AtlasTest/C/src/Cgendat.h
*** AtlasTest.1.0.1/C/src/Cgendat.h	Wed Nov 28 12:36:03 2001
--- AtlasTest/C/src/Cgendat.h	Tue Feb 10 05:44:38 2004
***************
*** 25,26 ****
--- 25,34 ----
  #define MAX( x, y ) ( (x) > (y) ? (x) : (y) )
  #define MIN( x, y ) ( (x) < (y) ? (x) : (y) )
+ 
+ #if defined(__CYGWIN__) || defined(__MINGW32__)
+ #define lrand48() (rand()/32767)
+ #define srand48(sv) (srand((unsigned)(sv)))
+ #else
+ extern long lrand48();
+ extern void srand48();
+ #endif
Only in AtlasTest/C/src: Cgendat.h.rej
diff -C 2 -r AtlasTest.1.0.1/F77/src/Fgendat.h AtlasTest/F77/src/Fgendat.h
*** AtlasTest.1.0.1/F77/src/Fgendat.h	Wed Nov 28 12:36:09 2001
--- AtlasTest/F77/src/Fgendat.h	Tue Feb 10 05:44:38 2004
***************
*** 25,26 ****
--- 25,34 ----
  #define MAX( x, y ) ( (x) > (y) ? (x) : (y) )
  #define MIN( x, y ) ( (x) < (y) ? (x) : (y) )
+ 
+ #if defined(__CYGWIN__) || defined(__MINGW32__)
+ #define lrand48() (rand()/32767)
+ #define srand48(sv) (srand((unsigned)(sv)))
+ #else
+ extern long lrand48();
+ extern void srand48();
+ #endif
Only in AtlasTest/F77/src: Fgendat.h.rej
