diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-03 05:08:01 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-03 05:08:01 +0000 |
commit | 6fac4602ae2d88acdbc99f8de4ca371cc1228b92 (patch) | |
tree | c511cb1436c3e8fd1466a24a614231f499e87825 /src/backend/storage/page/bufpage.c | |
parent | 66637f4a2f8e69af70f54b346956839390388ae5 (diff) | |
download | postgresql-6fac4602ae2d88acdbc99f8de4ca371cc1228b92.tar.gz postgresql-6fac4602ae2d88acdbc99f8de4ca371cc1228b92.zip |
Clean up Makefile(s)
Add #include "postgres.h" as required
Remove #include "c.h" *and* "utils/elog.h" as applicable
Diffstat (limited to 'src/backend/storage/page/bufpage.c')
-rw-r--r-- | src/backend/storage/page/bufpage.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/storage/page/bufpage.c b/src/backend/storage/page/bufpage.c index 14b5ead85bc..77267a152e4 100644 --- a/src/backend/storage/page/bufpage.c +++ b/src/backend/storage/page/bufpage.c @@ -7,19 +7,18 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/page/bufpage.c,v 1.1.1.1 1996/07/09 06:21:58 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/page/bufpage.c,v 1.2 1996/11/03 05:07:44 scrappy Exp $ * *------------------------------------------------------------------------- */ #include <sys/types.h> #include <sys/file.h> -#include "c.h" +#include "postgres.h" #include "storage/item.h" #include "storage/buf.h" #include "storage/bufmgr.h" -#include "utils/elog.h" #include "utils/palloc.h" #include "utils/memutils.h" #include "storage/bufpage.h" |