diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 08:19:01 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 08:19:01 +0000 |
commit | 0cf60fb7182a76437d9953c75c649fd5ea1d43ca (patch) | |
tree | df29f2b761a97e0d6f8f3bc67cd848e06ace30c9 /src/backend/access/gist/gistscan.c | |
parent | d1e9a761317271eb0c7a317fad123a18923ebfce (diff) | |
download | postgresql-0cf60fb7182a76437d9953c75c649fd5ea1d43ca.tar.gz postgresql-0cf60fb7182a76437d9953c75c649fd5ea1d43ca.zip |
More cleaned out #include files
Makefile fixed for fmgr.h
Diffstat (limited to 'src/backend/access/gist/gistscan.c')
-rw-r--r-- | src/backend/access/gist/gistscan.c | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/src/backend/access/gist/gistscan.c b/src/backend/access/gist/gistscan.c index bab14bac69b..0f3ce3b59d9 100644 --- a/src/backend/access/gist/gistscan.c +++ b/src/backend/access/gist/gistscan.c @@ -10,32 +10,21 @@ *------------------------------------------------------------------------- */ -#include <stdio.h> -#include <time.h> +#include <postgres.h> -#include "postgres.h" - -#include "access/relscan.h" -#include "access/gist.h" -#include "access/genam.h" -#include "storage/lmgr.h" +#include <access/gist.h> +#include <access/genam.h> +#include <access/rtree.h> +#include <storage/bufmgr.h> +#include <access/giststrat.h> +#include <storage/lmgr.h> #ifndef HAVE_MEMMOVE -# include "regex/utils.h" +# include <regex/utils.h> #else # include <string.h> #endif -#include "utils/palloc.h" - -#include "storage/block.h" -#include "storage/off.h" -#include "access/rtree.h" - -#include "storage/bufmgr.h" - -#include "access/giststrat.h" - /* routines defined and used here */ static void gistregscan(IndexScanDesc s); static void gistdropscan(IndexScanDesc s); |