summaryrefslogtreecommitdiff
path: root/src/backend/port/random.c
blob: 7b523b486746f3f5afdf4688f1ccc4c79b593b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* $Id: random.c,v 1.8 1999/07/16 03:13:06 momjian Exp $ */

#include <stdlib.h>
#include <math.h>
#include <errno.h>

long
random()
{
	return lrand48();
}