1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +03:00

Include postgres.h before checking #ifdef XLOG.

This commit is contained in:
Peter Eisentraut
2000-11-20 16:47:32 +00:00
parent 9394d391b8
commit 2b1d8bd29a
4 changed files with 13 additions and 18 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.93 2000/11/08 22:09:59 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.94 2000/11/20 16:47:31 petere Exp $
*
*-------------------------------------------------------------------------
*/
@ -43,10 +43,10 @@
* buf_table.c -- manages the buffer lookup table
*/
#include "postgres.h"
#ifdef XLOG
#include "xlog_bufmgr.c"
#else
#include <sys/types.h>
@ -54,7 +54,6 @@
#include <math.h>
#include <signal.h>
#include "postgres.h"
#include "executor/execdebug.h"
#include "miscadmin.h"
#include "storage/s_lock.h"