blob: 8c0a3de176709b1dc5b38f279e23d7a4ba604235 [file] [log] [blame]
/*
* lrand48.c
*/
#include <stdlib.h>
#include <stdint.h>
unsigned short __rand48_seed[3]; /* Common with mrand48.c, srand48.c */
long lrand48(void)
{
return (uint32_t)jrand48(__rand48_seed) >> 1;
}