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