this is a minor fix to increase the period of the obsolete rand_r a bit. an include header in __rand48_step.c is fixed as well.
@@ -1,5 +1,5 @@
#include <stdlib.h>
-#include <inttypes.h>
+#include <stdint.h>
uint64_t __rand48_step(unsigned short *xi, unsigned short *lc)
{
@@ -2,5 +2,5 @@
int rand_r(unsigned *seed)
- return (*seed = *seed * 1103515245 + 12345) & 0x7fffffff;
+ return (*seed = *seed * 1103515245 + 12345)/2;
}