Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / port / random.c
blobf5543dea5943abd0266e9e3e0760452626b3ad42
1 /*-------------------------------------------------------------------------
3 * random.c
4 * random() wrapper
6 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
10 * IDENTIFICATION
11 * $PostgreSQL$
13 *-------------------------------------------------------------------------
16 #include "c.h"
18 #include <math.h>
21 long
22 random()
24 return lrand48();