diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 10:02:06 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 10:02:06 +0000 |
commit | 4fa90e38d5e35c3a37995afc22a14f28d51327cf (patch) | |
tree | f18c3855e0aa3ee77f52f9dab9457ed376fc01a8 /src/backend/access/index/indexam.c | |
parent | 466f5fd72907dd001243cac047d53321cf25efcc (diff) | |
download | postgresql-4fa90e38d5e35c3a37995afc22a14f28d51327cf.tar.gz postgresql-4fa90e38d5e35c3a37995afc22a14f28d51327cf.zip |
More cleanups
Diffstat (limited to 'src/backend/access/index/indexam.c')
-rw-r--r-- | src/backend/access/index/indexam.c | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/src/backend/access/index/indexam.c b/src/backend/access/index/indexam.c index 716ad2d7782..dc354bdfaaf 100644 --- a/src/backend/access/index/indexam.c +++ b/src/backend/access/index/indexam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.6 1996/11/03 22:57:36 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.7 1996/11/05 10:02:03 scrappy Exp $ * * INTERFACE ROUTINES * index_open - open an index relation by relationId @@ -63,19 +63,13 @@ *------------------------------------------------------------------------- */ -#include "postgres.h" +#include <postgres.h> -#include "access/genam.h" - -#include "utils/relcache.h" - -#include "fmgr.h" - -#include "utils/palloc.h" - -#include "storage/lmgr.h" - -#include "access/heaptuple.h" +#include <access/genam.h> +#include <utils/relcache.h> +#include <fmgr.h> +#include <storage/lmgr.h> +#include <access/heaptuple.h> /* ---------------- * undefine macros we aren't going to use that would otherwise |