blob: e3b73ccf7c2f2111bea60fdf5ef53a449ebac12d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* mrand48.c
*/
#include <stdlib.h>
#include <stdint.h>
unsigned short __rand48_seed[3]; /* Common with lrand48.c, srand48.c */
long mrand48(void)
{
return jrand48(__rand48_seed);
}
|