From 8f5561a0d96b110c593dab2b11ff08fd2ba826d7 Mon Sep 17 00:00:00 2001 From: Bruce Momjian <bruce@momjian.us> Date: Sat, 17 Jul 1999 04:12:10 +0000 Subject: [PATCH] More config.h cleanups. --- src/backend/port/inet_aton.c | 6 +++--- src/include/c.h | 12 +++++------- src/include/postgres.h | 5 +---- 3 files changed, 9 insertions(+), 14 deletions(-) diff --git a/src/backend/port/inet_aton.c b/src/backend/port/inet_aton.c index 2922c137caa..485772619c9 100644 --- a/src/backend/port/inet_aton.c +++ b/src/backend/port/inet_aton.c @@ -1,4 +1,4 @@ -/* $Id: inet_aton.c,v 1.16 1999/02/07 22:07:02 tgl Exp $ +/* $Id: inet_aton.c,v 1.17 1999/07/17 04:12:09 momjian Exp $ * * This inet_aton() function was taken from the GNU C library and * incorporated into Postgres for those systems which do not have this @@ -42,12 +42,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ -#include "config.h" - #include <sys/types.h> #include <netinet/in.h> #include <ctype.h> +#include "config.h" + /* * Check whether "cp" is a valid ascii representation * of an Internet address and convert to a binary address. diff --git a/src/include/c.h b/src/include/c.h index 84516a0f8fa..1fd1aa0421e 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.59 1999/07/13 20:00:32 momjian Exp $ + * $Id: c.h,v 1.60 1999/07/17 04:12:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -46,6 +46,10 @@ on some platforms, and we only want our definitions used if stdlib.h doesn't have its own. The same goes for stddef and stdarg if present. */ + +#include "config.h" + + #include <stdlib.h> #ifdef STDC_HEADERS #include <stddef.h> @@ -103,12 +107,6 @@ typedef bool *BoolPtr; * ---------------------------------------------------------------- */ -/* - * We used to define const, signed, volatile, and inline as empty - * if __STDC__ wasn't defined. Now we let configure test whether - * those keywords work; config.h defines them as empty if not. - */ - /* * CppAsString * Convert the argument to a string, using the C preprocessor. diff --git a/src/include/postgres.h b/src/include/postgres.h index 5584aee242e..ad6cda67952 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -6,7 +6,7 @@ * * Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.25 1999/07/16 17:07:24 momjian Exp $ + * $Id: postgres.h,v 1.26 1999/07/17 04:12:10 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -36,9 +36,6 @@ #define POSTGRES_H #include "postgres_ext.h" -#ifndef WIN32 -#include "config.h" -#endif #include "c.h" #include "utils/elog.h" #include "utils/mcxt.h" -- GitLab