diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-17 03:04:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-17 03:04:57 +0000 |
commit | 21badba151f12fe80921c2791772482d00f728d2 (patch) | |
tree | 7704849f0e0cc044703195b4b30d15ae533941cc /src/backend/utils/mmgr/palloc.c | |
parent | 4e34686a36a350d6097bbbd983ec3f823aacf85c (diff) |
Replace direct inclusions of c.h with inclusion of postgres.h,
to ensure that config.h is included as well.
Diffstat (limited to 'src/backend/utils/mmgr/palloc.c')
-rw-r--r-- | src/backend/utils/mmgr/palloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/mmgr/palloc.c b/src/backend/utils/mmgr/palloc.c index 4862c92d966..9c50c3a3023 100644 --- a/src/backend/utils/mmgr/palloc.c +++ b/src/backend/utils/mmgr/palloc.c @@ -7,14 +7,14 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.8 1998/09/01 04:33:37 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Attic/palloc.c,v 1.9 1999/01/17 03:04:54 tgl Exp $ * *------------------------------------------------------------------------- */ #include <string.h> -#include "c.h" +#include "postgres.h" #include "utils/mcxt.h" #include "utils/elog.h" |