aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/buffer/buf_init.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/buf_init.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/buf_init.c')
-rw-r--r--src/backend/storage/buffer/buf_init.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/storage/buffer/buf_init.c b/src/backend/storage/buffer/buf_init.c
index 823bf41eecf..a26611ff568 100644
--- a/src/backend/storage/buffer/buf_init.c
+++ b/src/backend/storage/buffer/buf_init.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_init.c,v 1.1.1.1 1996/07/09 06:21:53 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_init.c,v 1.2 1996/11/03 04:56:58 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,6 +16,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"
@@ -30,7 +32,6 @@
#include "miscadmin.h"
#include "utils/builtins.h"
#include "utils/hsearch.h"
-#include "utils/elog.h"
#include "utils/memutils.h"
#include "executor/execdebug.h" /* for NDirectFileRead */
#include "catalog/catalog.h"