diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 22:09:10 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 22:09:10 +0000 |
commit | a88b72ea39f82e3bad18b173a275180476363ec0 (patch) | |
tree | 3ed0d63c739620bac28df2c7a08b4c1358060b25 /src | |
parent | 54223de000837c97328fc72a482f4eb6590451ec (diff) | |
download | postgresql-a88b72ea39f82e3bad18b173a275180476363ec0.tar.gz postgresql-a88b72ea39f82e3bad18b173a275180476363ec0.zip |
#ifndef the include file like the rest, so that it doesn't get pulled
in twice...
Diffstat (limited to 'src')
-rw-r--r-- | src/include/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 */ |