diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-17 20:18:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-17 20:18:55 +0000 |
commit | 3406901a2928627477374769416a32b01a08b131 (patch) | |
tree | e045a16716bbeb4b90ed143260887e23f96939f5 /src/backend/tcop/postgres.c | |
parent | c62b8a68bf60a451f57fd026bacc91648de7433a (diff) | |
download | postgresql-3406901a2928627477374769416a32b01a08b131.tar.gz postgresql-3406901a2928627477374769416a32b01a08b131.zip |
Move some system includes into c.h, and remove duplicates.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 777641477ee..6dfd32f6b10 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.124 1999/07/16 05:23:18 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.125 1999/07/17 20:17:51 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -17,8 +17,6 @@ */ #include <unistd.h> -#include <stdio.h> -#include <string.h> #include <signal.h> #include <time.h> #include <sys/time.h> @@ -1496,7 +1494,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[]) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.124 $ $Date: 1999/07/16 05:23:18 $\n"); + puts("$Revision: 1.125 $ $Date: 1999/07/17 20:17:51 $\n"); } /* ---------------- |