]> granicus.if.org Git - postgresql/commitdiff
Add back improperly removed #include for config.h.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 16 Jul 1999 23:09:45 +0000 (23:09 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 16 Jul 1999 23:09:45 +0000 (23:09 +0000)
This probably ought to be kept in *all* the port files, but these two
are the only ones that generated compiler warnings for me ...

src/backend/port/random.c
src/backend/port/srandom.c

index 7b523b486746f3f5afdf4688f1ccc4c79b593b84..950b9106eca2f39966725cb454f0661be3d8c2b9 100644 (file)
@@ -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()
 {
index f7ff333f2e1305831134c9c7055e30c80768f20b..eb16736d4ce67440f9c37b912bc6b522e50d6932 100644 (file)
@@ -1,9 +1,11 @@
-/* $Id: srandom.c,v 1.8 1999/07/16 03:13:08 momjian Exp $ */
+/* $Id: srandom.c,v 1.9 1999/07/16 23:09:45 tgl Exp $ */
 
 #include <stdlib.h>
 #include <math.h>
 #include <errno.h>
 
+#include "config.h"
+
 void
 srandom(unsigned int seed)
 {