OSDN Git Service

upgrade to 3.6.2
[jnethack/source.git] / include / pcconf.h
index c5b46be..fb210b8 100644 (file)
 #include <time.h>
 #endif
 
-#ifdef RANDOM
-/* Use the high quality random number routines. */
-#define Rand() random()
-#else
-#define Rand() rand()
+/* the high quality random number routines */
+#ifndef USE_ISAAC64
+# ifdef RANDOM
+#  define Rand() random()
+# else
+#  define Rand() rand()
+# endif
 #endif
 
 #ifndef TOS