postgresql/src/backend/port/random.c

13 lines
168 B
C
Raw Normal View History

#include <math.h> /* for pow() prototype */
#include <errno.h>
#include "rusagestub.h"
#include "port-protos.h"
long
random()
{
return (lrand48());
}