comparison src/s/sol2-5.h @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children 6b37e6ddd302
comparison
equal deleted inserted replaced
1:c0c6a60d29db 2:ac2d302a0011
25 /* Solaris 2.5 is the first Solaris that has getpagesize(), srandom() 25 /* Solaris 2.5 is the first Solaris that has getpagesize(), srandom()
26 and random(), but they forgot to add prototypes to the header 26 and random(), but they forgot to add prototypes to the header
27 files. */ 27 files. */
28 int getpagesize (void); 28 int getpagesize (void);
29 long random (void); 29 long random (void);
30 int srandom (unsigned int seed); 30 void srandom (unsigned int seed);
31 #endif /* NOT_C_CODE */ 31 #endif /* NOT_C_CODE */
32 32
33 /* 2.5 now has random back in libc but we don't want to use it. */ 33 /* 2.5 now has random back in libc but we don't want to use it. */
34 #undef HAVE_RANDOM 34 #undef HAVE_RANDOM
35 35