aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/buffer/bufmgr.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-03 04:57:03 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-03 04:57:03 +0000
commit66637f4a2f8e69af70f54b346956839390388ae5 (patch)
tree2ed05c3ae139ffbf110dfc492102327c20dd4df4 /src/backend/storage/buffer/bufmgr.c
parentc4edfb46679c32bff4eefffb733875471f295a62 (diff)
downloadpostgresql-66637f4a2f8e69af70f54b346956839390388ae5.tar.gz
postgresql-66637f4a2f8e69af70f54b346956839390388ae5.zip
Clean up Makefile
Add #include "postgres.h" as required Remove #include "utils/elog.h"
Diffstat (limited to 'src/backend/storage/buffer/bufmgr.c')
-rw-r--r--src/backend/storage/buffer/bufmgr.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c
index 9dbc105112a..dccee668da8 100644
--- a/src/backend/storage/buffer/bufmgr.c
+++ b/src/backend/storage/buffer/bufmgr.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.3 1996/09/19 19:50:48 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.4 1996/11/03 04:57:00 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -51,6 +51,8 @@
#include <math.h>
#include <signal.h>
+#include "postgres.h"
+
/* declarations split between these three files */
#include "storage/buf.h"
#include "storage/buf_internals.h"
@@ -65,7 +67,6 @@
#include "miscadmin.h"
#include "utils/builtins.h"
#include "utils/hsearch.h"
-#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/memutils.h"
#include "executor/execdebug.h" /* for NDirectFileRead */