1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-28 11:55:03 +03:00

More cleans of the inter-dependencies in the #include files

This commit is contained in:
Marc G. Fournier
1996-11-03 12:13:35 +00:00
parent 71cd646a34
commit ff36ebc922
17 changed files with 48 additions and 111 deletions

View File

@@ -6,20 +6,15 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: genam.h,v 1.2 1996/10/31 09:46:37 scrappy Exp $
* $Id: genam.h,v 1.3 1996/11/03 12:12:22 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef GENAM_H
#define GENAM_H
#include "access/attnum.h"
#include "access/htup.h"
#include "access/istrat.h"
#include "access/itup.h"
#include "access/relscan.h"
#include "access/skey.h"
#include "access/sdir.h"
#include "access/funcindex.h"

View File

@@ -12,11 +12,10 @@
#ifndef GIST_H
#define GIST_H
#include "utils/rel.h"
#include "storage/off.h"
#include "utils/rel.h"
#include "storage/block.h"
#include "storage/bufpage.h"
#include "access/skey.h"
#include "storage/page.h"
/*
** You can have as many strategies as you please in GiSTs, as

View File

@@ -11,6 +11,10 @@
*/
#ifndef GISTSCAN_H
#include "utils/rel.h"
#include "storage/block.h"
#include "storage/off.h"
void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum);
#endif /* GISTSCAN_H */