diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-07-16 03:14:30 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-07-16 03:14:30 +0000 |
| commit | 9b645d481ccfa3638de915e0f75e3dfe9d520b79 (patch) | |
| tree | 99ce60a6b354e7f817eb5c502af6936739146596 /src/backend/postmaster/postmaster.c | |
| parent | a9591ce66aa69e82196800b0f4f7b6e35aea8e49 (diff) | |
| download | postgresql-9b645d481ccfa3638de915e0f75e3dfe9d520b79.tar.gz | |
Update #include cleanups
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
| -rw-r--r-- | src/backend/postmaster/postmaster.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 81231f41ea..2bf92b5f03 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.110 1999/07/15 23:03:22 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.111 1999/07/16 03:13:19 momjian Exp $ * * NOTES * @@ -33,9 +33,9 @@ *------------------------------------------------------------------------- */ /* moved here to prevent double define */ -#include <sys/param.h> /* for MAXHOSTNAMELEN on most */ +#include <sys/param.h> #ifdef HAVE_NETDB_H -#include <netdb.h> /* for MAXHOSTNAMELEN on some */ +#include <netdb.h> #endif #ifndef MAXHOSTNAMELEN @@ -54,8 +54,8 @@ #endif /* !NO_UNISTD_H */ #include <ctype.h> -#include <sys/types.h> /* for fd_set stuff */ -#include <sys/stat.h> /* for umask */ +#include <sys/types.h> +#include <sys/stat.h> #include <sys/time.h> #include <sys/socket.h> #ifdef HAVE_LIMITS_H @@ -91,7 +91,7 @@ #include "nodes/nodes.h" #include "storage/proc.h" #ifndef HAVE_GETHOSTNAME -#include "port-protos.h" /* For gethostname() */ +#include "port-protos.h" #endif #include "storage/fd.h" #include "utils/trace.h" |
