aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-01-20 04:11:52 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-01-20 04:11:52 +0000
commitd242b64ba254693f916d65accdc9bb254da385a5 (patch)
treef9b679b9b40afbf0976de3b6938f34cad9003796 /src/backend
parent7476e3718b038f563d39ea7f108fbff156275c94 (diff)
downloadpostgresql-d242b64ba254693f916d65accdc9bb254da385a5.tar.gz
postgresql-d242b64ba254693f916d65accdc9bb254da385a5.zip
Tweak includes to avoid compiler warning on HPUX.
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/postmaster/postmaster.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 884563f4a02..ea69af4eb19 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.133 2000/01/09 12:13:24 ishii Exp $
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.134 2000/01/20 04:11:52 tgl Exp $
*
* NOTES
*
@@ -34,7 +34,6 @@
*/
#include <unistd.h>
#include <signal.h>
-#include <time.h>
#include <sys/wait.h>
#include <ctype.h>
#include <sys/types.h>
@@ -43,6 +42,7 @@
#include <sys/socket.h>
#include <errno.h>
#include <fcntl.h>
+#include <time.h>
#include <sys/param.h>
#include "postgres.h"