From: Marc G. Fournier Date: Tue, 27 Aug 1996 22:09:10 +0000 (+0000) Subject: #ifndef the include file like the rest, so that it doesn't get pulled X-Git-Tag: REL2_0~604 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a88b72ea39f82e3bad18b173a275180476363ec0;p=thirdparty%2Fpostgresql.git #ifndef the include file like the rest, so that it doesn't get pulled in twice... --- diff --git a/src/include/config.h b/src/include/config.h index b1f715a968f..b76624963d1 100644 --- a/src/include/config.h +++ b/src/include/config.h @@ -4,6 +4,9 @@ eventual use of autoconf to build the server */ +#ifndef CONFIG_H +#define CONFIG_H + #define BLCKSZ 8192 @@ -60,4 +63,5 @@ /*------------------------------------------------------*/ /* #define UNSAFE_FLOATS */ +#endif /* CONFIG_H */