1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-12 05:01:15 +03:00

Clean up Makefile

Add #include "postgres.h" as required

Remove #include "utils/elog.h"
This commit is contained in:
Marc G. Fournier
1996-11-03 04:57:03 +00:00
parent c4edfb4667
commit 66637f4a2f
6 changed files with 19 additions and 14 deletions

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/freelist.c,v 1.1.1.1 1996/07/09 06:21:54 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/freelist.c,v 1.2 1996/11/03 04:57:02 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -24,10 +24,12 @@
* semaphore has been acquired by the caller.
*/
#include <stdio.h>
#include "postgres.h"
#include "storage/bufmgr.h"
#include "storage/buf_internals.h" /* where declarations go */
#include "storage/spin.h"
#include "utils/elog.h"
static BufferDesc *SharedFreeList;