Consistently use "superuser" instead of "super user"
[pgsql.git] / src / port / srandom.c
blobcf1007b2ef81a2896b98167f9b40f04ecc48f5e5
1 /*-------------------------------------------------------------------------
3 * srandom.c
4 * srandom() 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/srandom.c
13 *-------------------------------------------------------------------------
16 #include "c.h"
18 #include <math.h>
21 void
22 srandom(unsigned int seed)
24 pg_srand48((long int) seed);