1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Cleanup Makefiles

Add #include "postgres.h"
	and
    #include <sys/types.h>
This commit is contained in:
Marc G. Fournier
1996-10-31 10:59:42 +00:00
parent eb501f1cd3
commit 76294e1d38
16 changed files with 49 additions and 31 deletions

View File

@ -7,11 +7,13 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/createplan.c,v 1.3 1996/09/10 06:48:32 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/plan/createplan.c,v 1.4 1996/10/31 10:59:09 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "c.h"
#include <sys/types.h>
#include "postgres.h"
#include "nodes/execnodes.h"
#include "nodes/plannodes.h"
@ -21,7 +23,6 @@
#include "nodes/makefuncs.h"
#include "utils/elog.h"
#include "utils/lsyscache.h"
#include "utils/palloc.h"
#include "utils/builtins.h"