MacOSX: no lrand48()

No lrand48() on MacOSX, since MacOSX is really BSD.
This commit is contained in:
warwick
2002-01-23 02:26:02 +00:00
parent af6a8574e0
commit a89b941f5b

View File

@@ -297,7 +297,7 @@
#endif
/* Use the high quality random number routines. */
#if defined(BSD) || defined(ULTRIX) || defined(CYGWIN32) || defined(RANDOM)
#if defined(BSD) || defined(ULTRIX) || defined(CYGWIN32) || defined(RANDOM) || defined(__APPLE__)
#define Rand() random()
#else
#define Rand() lrand48()