Consistently use "superuser" instead of "super user"
[pgsql.git] / src / port / random.c
blob2dd59a08293d21f7c613a50ee393a3a2901c6e36
1 /*-------------------------------------------------------------------------
3 * random.c
4 * random() wrapper
6 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
10 * IDENTIFICATION
11 * src/port/random.c
13 *-------------------------------------------------------------------------
16 #include "c.h"
18 #include <math.h>
21 long
22 random(void)
24 return pg_lrand48();