diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1996-10-31 08:24:47 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-31 08:24:47 +0000 |
| commit | 367ade186ffea58f19967433e8739a34cda7afe8 (patch) | |
| tree | 8a9a3f76fdd238e2a6311d0fadd0bb92477fdbfd /src/backend/access/hash/hashutil.c | |
| parent | ea04818002b9280e105c9307f31f7d7063d1019c (diff) | |
| download | postgresql-367ade186ffea58f19967433e8739a34cda7afe8.tar.gz | |
Remove -I../.. and -I../../include from Makefile
Add some missing include files
Diffstat (limited to 'src/backend/access/hash/hashutil.c')
| -rw-r--r-- | src/backend/access/hash/hashutil.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/access/hash/hashutil.c b/src/backend/access/hash/hashutil.c index 25231d9671..51e0baf6c1 100644 --- a/src/backend/access/hash/hashutil.c +++ b/src/backend/access/hash/hashutil.c @@ -7,15 +7,18 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.4 1996/10/21 05:45:21 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.5 1996/10/31 08:24:47 scrappy Exp $ * *------------------------------------------------------------------------- */ +#include <time.h> + #include "postgres.h" #include "catalog/pg_attribute.h" #include "access/attnum.h" +#include "nodes/nodes.h" #include "nodes/pg_list.h" #include "access/tupdesc.h" #include "storage/fd.h" @@ -30,18 +33,17 @@ #include "storage/block.h" #include "storage/off.h" #include "storage/itemptr.h" -#include <time.h> #include "utils/nabstime.h" #include "access/htup.h" #include "access/itup.h" #include "storage/itemid.h" #include "storage/item.h" #include "storage/buf.h" +#include "storage/page.h" #include "storage/bufpage.h" #include "access/sdir.h" #include "access/funcindex.h" #include "utils/tqual.h" -#include "storage/buf.h" #include "access/relscan.h" #include "access/hash.h" |
