1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-18 04:29:09 +03:00
Files
postgres/src/port/random.c

14 lines
172 B
C

/* $Id: random.c,v 1.1 2002/07/18 04:13:59 momjian Exp $ */
#include "c.h"
#include <stdlib.h>
#include <math.h>
#include <errno.h>
long
random()
{
return lrand48();
}