1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Clean up Makefile(s)

Add #include "postgres.h" as required

Remove #include "c.h" *and* "utils/elog.h" as applicable
This commit is contained in:
Marc G. Fournier
1996-11-03 05:08:01 +00:00
parent 66637f4a2f
commit 6fac4602ae
25 changed files with 52 additions and 64 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.6 1996/10/11 03:22:59 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.7 1996/11/03 05:07:32 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -46,7 +46,7 @@
* This is so that we can support more backends. (system-wide semaphore
* sets run out pretty fast.) -ay 4/95
*
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.6 1996/10/11 03:22:59 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.7 1996/11/03 05:07:32 scrappy Exp $
*/
#include <sys/time.h>
#ifndef WIN32
@@ -54,11 +54,12 @@
#endif /* WIN32 */
#include <string.h>
#include <sys/types.h>
#include "postgres.h"
#include "libpq/pqsignal.h" /* substitute for <signal.h> */
#include "access/xact.h"
#include "utils/hsearch.h"
#include "utils/elog.h"
#include "storage/buf.h"
#include "storage/lock.h"