diff options
Diffstat (limited to 'src/prng/srand48.c')
-rw-r--r-- | src/prng/srand48.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/prng/srand48.c b/src/prng/srand48.c new file mode 100644 index 00000000..0a56f6a0 --- /dev/null +++ b/src/prng/srand48.c @@ -0,0 +1,6 @@ +#include <stdlib.h> + +void srand48(long seed) +{ + seed48((unsigned short [3]){ 0x330e, seed, seed>>16 }); +} |