diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-11-20 16:47:32 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-11-20 16:47:32 +0000 |
commit | 2b1d8bd29a3adb4facc2968ad666159c5567f77f (patch) | |
tree | 2a6163f283c7ec10d620918b6817ef6fbce01ba8 /src/backend/storage/buffer/localbuf.c | |
parent | 9394d391b803c55281879721ea393a50df4a0be6 (diff) | |
download | postgresql-2b1d8bd29a3adb4facc2968ad666159c5567f77f.tar.gz postgresql-2b1d8bd29a3adb4facc2968ad666159c5567f77f.zip |
Include postgres.h before checking #ifdef XLOG.
Diffstat (limited to 'src/backend/storage/buffer/localbuf.c')
-rw-r--r-- | src/backend/storage/buffer/localbuf.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/backend/storage/buffer/localbuf.c b/src/backend/storage/buffer/localbuf.c index 352f519bdc0..7a841a354ad 100644 --- a/src/backend/storage/buffer/localbuf.c +++ b/src/backend/storage/buffer/localbuf.c @@ -16,15 +16,15 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/buffer/localbuf.c,v 1.34 2000/11/08 22:09:59 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/buffer/localbuf.c,v 1.35 2000/11/20 16:47:32 petere Exp $ * *------------------------------------------------------------------------- */ -#ifdef XLOG +#include "postgres.h" +#ifdef XLOG #include "xlog_localbuf.c" - #else #include <sys/types.h> @@ -32,8 +32,6 @@ #include <math.h> #include <signal.h> -#include "postgres.h" - #include "executor/execdebug.h" #include "storage/smgr.h" #include "utils/relcache.h" |