diff options
| author | Bruce Momjian | 1999-07-16 05:00:38 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-07-16 05:00:38 +0000 |
| commit | a71802e12ec04fed791ea47f24ea30e0f5d9f5c2 (patch) | |
| tree | 80d29372e0bbdd85bc4938ec048fa565c98eac12 /src/backend/postmaster | |
| parent | 9b645d481ccfa3638de915e0f75e3dfe9d520b79 (diff) | |
Final cleanup.
Diffstat (limited to 'src/backend/postmaster')
| -rw-r--r-- | src/backend/postmaster/postmaster.c | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 2bf92b5f031..72a2cd9944b 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.111 1999/07/16 03:13:19 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.112 1999/07/16 04:59:38 momjian Exp $ * * NOTES * @@ -38,32 +38,33 @@ #include <netdb.h> #endif +#include "postgres.h" + #ifndef MAXHOSTNAMELEN #define MAXHOSTNAMELEN 256 #endif -#include "postgres.h" +#if !defined(NO_UNISTD_H) +#include <unistd.h> +#endif /* !NO_UNISTD_H */ #include <signal.h> #include <string.h> #include <stdlib.h> #include <time.h> -#if !defined(NO_UNISTD_H) -#include <unistd.h> -#endif /* !NO_UNISTD_H */ -#include <ctype.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <sys/time.h> -#include <sys/socket.h> #ifdef HAVE_LIMITS_H #include <limits.h> #else #include <values.h> #endif #include <sys/wait.h> +#include <ctype.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/time.h> +#include <sys/socket.h> #include <errno.h> #include <fcntl.h> @@ -77,24 +78,25 @@ #include "getopt.h" #endif -#include "storage/ipc.h" -#include "libpq/libpq.h" +#ifndef HAVE_GETHOSTNAME +#include "port-protos.h" +#endif + +#include "commands/async.h" +#include "lib/dllist.h" #include "libpq/auth.h" +#include "libpq/crypt.h" +#include "libpq/libpq.h" #include "libpq/pqcomm.h" #include "libpq/pqsignal.h" -#include "libpq/crypt.h" #include "miscadmin.h" -#include "version.h" -#include "lib/dllist.h" -#include "tcop/tcopprot.h" -#include "commands/async.h" #include "nodes/nodes.h" -#include "storage/proc.h" -#ifndef HAVE_GETHOSTNAME -#include "port-protos.h" -#endif #include "storage/fd.h" +#include "storage/ipc.h" +#include "storage/proc.h" +#include "tcop/tcopprot.h" #include "utils/trace.h" +#include "version.h" #if !defined(MAXINT) #define MAXINT INT_MAX |
