summaryrefslogtreecommitdiff
path: root/src/backend/port/random.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>1999-07-16 23:09:45 +0000
committerTom Lane <tgl@sss.pgh.pa.us>1999-07-16 23:09:45 +0000
commite1e110228f8a2a42e48be7ee0735496413b06946 (patch)
tree9b7b4de4160661315ed04876f9ff10498c5492c5 /src/backend/port/random.c
parent1a6c5b96addc31786c7e5438501438664a4d2e3f (diff)
Add back improperly removed #include for config.h.
This probably ought to be kept in *all* the port files, but these two are the only ones that generated compiler warnings for me ...
Diffstat (limited to 'src/backend/port/random.c')
-rw-r--r--src/backend/port/random.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/port/random.c b/src/backend/port/random.c
index 7b523b48674..950b9106eca 100644
--- a/src/backend/port/random.c
+++ b/src/backend/port/random.c
@@ -1,9 +1,11 @@
-/* $Id: random.c,v 1.8 1999/07/16 03:13:06 momjian Exp $ */
+/* $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()
{