]> granicus.if.org Git - postgresql/commitdiff
Tweak includes to avoid compiler warning on HPUX.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 20 Jan 2000 04:11:52 +0000 (04:11 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 20 Jan 2000 04:11:52 +0000 (04:11 +0000)
src/backend/postmaster/postmaster.c
src/interfaces/libpq/fe-misc.c

index 884563f4a02ceadfca685982687141d3472c1898..ea69af4eb1973e6d8f270e3932c8c9d3efea8f5a 100644 (file)
@@ -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"
index b87ab4df98ba7ff837fbfa83ce00e2fe391e1c77..e03fd2ce0759addf584f9834f78084af4fc3edef 100644 (file)
  *
  *
  * 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"
 #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)))