1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-28 18:48:04 +03:00

port.c no longer required...individual functions that were in there are

auto-generated via configure

individual functions in individual files
This commit is contained in:
Marc G. Fournier
1997-12-19 02:27:20 +00:00
parent 5379b84eff
commit 3ad815fc2a
4 changed files with 45 additions and 46 deletions

12
src/backend/port/random.c Normal file
View File

@@ -0,0 +1,12 @@
#include <math.h> /* for pow() prototype */
#include <errno.h>
#include "rusagestub.h"
#include "port-protos.h"
long
random()
{
return (lrand48());
}