@@ -1,4 +1,5 @@
#include <stdint.h>
+#include "rand48.h"
uint64_t __rand48_step(unsigned short *xi, unsigned short *lc)
{
@@ -1 +1,3 @@
+
unsigned short __seed48[7] = { 0, 0, 0, 0xe66d, 0xdeec, 0x5, 0xb };
@@ -1,8 +1,6 @@
#include <stdlib.h>
#include <inttypes.h>
-
-uint64_t __rand48_step(unsigned short *xi, unsigned short *lc);
-extern unsigned short __seed48[7];
double erand48(unsigned short s[3])
@@ -1,7 +1,6 @@
#include <string.h>
void lcong48(unsigned short p[7])
long nrand48(unsigned short s[3])
long jrand48(unsigned short s[3])
@@ -0,0 +1,4 @@
+#include <stdint.h>
+uint64_t __rand48_step(unsigned short *xi, unsigned short *lc);
+extern unsigned short __seed48[7];
unsigned short *seed48(unsigned short *s)