diff options
Diffstat (limited to 'src/port/srandom.c')
-rw-r--r-- | src/port/srandom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/srandom.c b/src/port/srandom.c index d70e3d855f6..8a25a21e926 100644 --- a/src/port/srandom.c +++ b/src/port/srandom.c @@ -21,5 +21,5 @@ void srandom(unsigned int seed) { - srand48((long int) seed); + pg_srand48((long int) seed); } |