Make nbtree split REDO locking match original execution.
[pgsql.git] / src / port / srandom.c
blobce9e2bc245509bb14f02e47795118606d7fbae13
1 /*-------------------------------------------------------------------------
3 * srandom.c
4 * srandom() wrapper
6 * Portions Copyright (c) 1996-2020, 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);