diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-18 02:26:57 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-18 02:26:57 +0000 |
commit | e2a8163c405080552a52bc85a3024ad47ee9cf65 (patch) | |
tree | 894b7db24e5e7ca277f63dc924b4ac747fd8ee10 /src/backend/tcop/postgres.c | |
parent | b55d49f5fe4446507f1b9fd5f78db005fc0f639c (diff) | |
download | postgresql-e2a8163c405080552a52bc85a3024ad47ee9cf65.tar.gz postgresql-e2a8163c405080552a52bc85a3024ad47ee9cf65.zip |
Remove linux define of __USE_POSIX, which doesn't appear to do anything.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index b4970e27864..fa06c53b0c9 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.20 1996/11/16 09:03:44 bryanh Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.21 1996/11/18 02:26:57 bryanh Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -17,12 +17,6 @@ */ #include "libpq/pqsignal.h" /* substitute for <signal.h> */ -#if defined(linux) -#ifndef __USE_POSIX -#define __USE_POSIX -#endif -#endif /* defined(linux) */ - #include <unistd.h> #include <stdio.h> #include <string.h> @@ -1268,7 +1262,7 @@ PostgresMain(int argc, char *argv[]) */ if (IsUnderPostmaster == false) { puts("\nPOSTGRES backend interactive interface"); - puts("$Revision: 1.20 $ $Date: 1996/11/16 09:03:44 $"); + puts("$Revision: 1.21 $ $Date: 1996/11/18 02:26:57 $"); } /* ---------------- |