diff options
Diffstat (limited to 'src/backend/libpq/pqcomm.c')
| -rw-r--r-- | src/backend/libpq/pqcomm.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/backend/libpq/pqcomm.c b/src/backend/libpq/pqcomm.c index f78f418636..ada4d4a30a 100644 --- a/src/backend/libpq/pqcomm.c +++ b/src/backend/libpq/pqcomm.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.4 1996/10/31 10:37:52 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.5 1996/11/06 08:48:30 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -34,23 +34,22 @@ * the postgres backend. * */ - -#include "postgres.h" - -#include "libpq/pqsignal.h" /* substitute for <signal.h> */ #include <stdio.h> #include <string.h> +#include <errno.h> +#include <fcntl.h> +#include <signal.h> #ifndef WIN32 #include <unistd.h> /* for ttyname() */ #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #include <netinet/in.h> +#include <sys/socket.h> +#include <arpa/inet.h> #else #include <winsock.h> #endif /* WIN32 */ -#include <errno.h> -#include <fcntl.h> #if defined(linux) #ifndef SOMAXCONN @@ -58,9 +57,11 @@ #endif /* SOMAXCONN */ #endif /* linux */ -#include "libpq/auth.h" -#include "libpq/libpq.h" /* where the declarations go */ -#include "libpq/pqcomm.h" +#include <postgres.h> + +#include <libpq/pqsignal.h> /* substitute for <signal.h> */ +#include <libpq/auth.h> +#include <libpq/libpq.h> /* where the declarations go */ /* ---------------- * declarations |
