mirror of
https://github.com/postgres/postgres.git
synced 2025-11-13 16:22:44 +03:00
This probably ought to be kept in *all* the port files, but these two are the only ones that generated compiler warnings for me ...
14 lines
173 B
C
14 lines
173 B
C
/* $Id: random.c,v 1.9 1999/07/16 23:09:45 tgl Exp $ */
|
|
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
#include <errno.h>
|
|
|
|
#include "config.h"
|
|
|
|
long
|
|
random()
|
|
{
|
|
return lrand48();
|
|
}
|