aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-auth.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-03-22 04:18:17 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-03-22 04:18:17 +0000
commit8d53465ed5fd175cfb09a1941ab0babebf2a33fb (patch)
treed392be7263ccd0135d5b8861873974d079696929 /src/interfaces/libpq/fe-auth.c
parent825d6f8fce05f5addf62853af799f2ad285284dc (diff)
downloadpostgresql-8d53465ed5fd175cfb09a1941ab0babebf2a33fb.tar.gz
postgresql-8d53465ed5fd175cfb09a1941ab0babebf2a33fb.zip
Moved sys/types.h to before netdb.h
From: Vince Vielhaber <vev@michvhf.com>
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r--src/interfaces/libpq/fe-auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c
index 93fb4442b05..148d9343497 100644
--- a/src/interfaces/libpq/fe-auth.c
+++ b/src/interfaces/libpq/fe-auth.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.15 1998/02/26 04:44:56 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.16 1998/03/22 04:18:17 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -27,11 +27,11 @@
#include <stdio.h>
#include <string.h>
#include <sys/param.h> /* for MAXHOSTNAMELEN on most */
+#include <sys/types.h>
#ifndef MAXHOSTNAMELEN
#include <netdb.h> /* for MAXHOSTNAMELEN on some */
#endif
#include <unistd.h>
-#include <sys/types.h>
#include <pwd.h>
#include "postgres.h"