blob: cb3532bff023b141a038cdd48230750deaddfaf6 [file] [log] [blame]
/*
* nrand48.c
*/
#include <stdlib.h>
#include <stdint.h>
long nrand48(unsigned short xsubi[3])
{
return (long)((uint32_t) jrand48(xsubi) >> 1);
}