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:
12
src/backend/port/random.c
Normal file
12
src/backend/port/random.c
Normal 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());
|
||||
}
|
||||
|
Reference in New Issue
Block a user