postgresql/src/backend/port/random.c

13 lines
190 B
C
Raw Normal View History

1998-09-01 05:29:17 +02:00
/* $Id: random.c,v 1.5 1998/09/01 03:24:30 momjian Exp $ */
#include <math.h> /* for pow() prototype */
#include <errno.h>
#include "rusagestub.h"
long
random()
{
1998-09-01 05:29:17 +02:00
return lrand48();
}