Don't define Rand() if isaac64 is used

This commit is contained in:
Patric Mueller
2019-01-17 11:48:58 +01:00
parent 3f609bf9ad
commit 97b8d0a50b
7 changed files with 44 additions and 56 deletions

View File

@@ -143,14 +143,12 @@
#define USE_STDARG
/* Use the high quality random number routines. */
#ifdef USE_ISAAC64
#define Rand() rn2(RAND_MAX)
#else
#ifdef RANDOM
#define Rand() random()
#else
#define Rand() rand()
#endif
#ifndef USE_ISAAC64
# ifdef RANDOM
# define Rand() random()
# else
# define Rand() rand()
# endif
#endif
#define FCMASK 0660 /* file creation mask */