From d242b64ba254693f916d65accdc9bb254da385a5 Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Thu, 20 Jan 2000 04:11:52 +0000
Subject: [PATCH] Tweak includes to avoid compiler warning on HPUX.

---
 src/backend/postmaster/postmaster.c |  4 ++--
 src/interfaces/libpq/fe-misc.c      | 17 +++++++++--------
 2 files changed, 11 insertions(+), 10 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"
diff --git a/src/interfaces/libpq/fe-misc.c b/src/interfaces/libpq/fe-misc.c
index b87ab4df98b..e03fd2ce075 100644
--- a/src/interfaces/libpq/fe-misc.c
+++ b/src/interfaces/libpq/fe-misc.c
@@ -24,19 +24,12 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-misc.c,v 1.35 2000/01/18 19:05:31 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-misc.c,v 1.36 2000/01/20 04:08:46 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
 
-#include <errno.h>
-#include <signal.h>
-#include <time.h>
-
 #include "postgres.h"
-#include "libpq-fe.h"
-#include "libpq-int.h"
-#include "pqsignal.h"
 
 #ifdef WIN32
 #include "win32.h"
@@ -45,10 +38,18 @@
 #include <sys/time.h>
 #endif
 
+#include <errno.h>
+#include <signal.h>
+#include <time.h>
+
 #ifdef HAVE_SYS_SELECT_H
 #include <sys/select.h>
 #endif
 
+#include "libpq-fe.h"
+#include "libpq-int.h"
+#include "pqsignal.h"
+
 
 #define DONOTICE(conn,message) \
 	((*(conn)->noticeHook) ((conn)->noticeArg, (message)))
-- 
GitLab