diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 22:00:21 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-27 22:00:21 +0000 |
commit | eadf5dc754f68457499e65815bff47f9152c581d (patch) | |
tree | 083a9ad4743d578f7fffbc7b7d4607855bb80b50 /src/backend/include/postgres.h | |
parent | 5a8820efcd9ae853de8ae711412218c7059d3358 (diff) | |
download | postgresql-eadf5dc754f68457499e65815bff47f9152c581d.tar.gz postgresql-eadf5dc754f68457499e65815bff47f9152c581d.zip |
#include "postgres.h" exists in most .c files in system, so adding
#include "config.h" here will (should?) ensure that any platform
dependencies defined in config.h should be reflected in all .c files...
Diffstat (limited to 'src/backend/include/postgres.h')
-rw-r--r-- | src/backend/include/postgres.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/include/postgres.h b/src/backend/include/postgres.h index 429a25e4ff4..3b655062457 100644 --- a/src/backend/include/postgres.h +++ b/src/backend/include/postgres.h @@ -6,7 +6,7 @@ * * Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.1.1.1 1996/07/09 06:21:28 scrappy Exp $ + * $Id: postgres.h,v 1.2 1996/08/27 22:00:21 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -36,6 +36,7 @@ #ifndef POSTGRES_H #define POSTGRES_H +#include "config.h" #include "c.h" /* ---------------------------------------------------------------- |