diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 10:54:20 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 10:54:20 +0000 |
commit | 050d14829557e580c860348b11c5eca30f8f6063 (patch) | |
tree | f8a79f70ca59f2497e369d6a9eb9637fb4b51390 /src/backend/access/rtree/rtscan.c | |
parent | 6608278ea40a57ba55ee83771e9cf995d94cd269 (diff) |
One more to go
Diffstat (limited to 'src/backend/access/rtree/rtscan.c')
-rw-r--r-- | src/backend/access/rtree/rtscan.c | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/src/backend/access/rtree/rtscan.c b/src/backend/access/rtree/rtscan.c index d0b02db0886..b8adff5affe 100644 --- a/src/backend/access/rtree/rtscan.c +++ b/src/backend/access/rtree/rtscan.c @@ -7,26 +7,25 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtscan.c,v 1.7 1996/11/03 22:58:09 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtscan.c,v 1.8 1996/11/05 10:54:19 scrappy Exp $ * *------------------------------------------------------------------------- */ -#include <string.h> - -#include "postgres.h" - -#include "storage/bufmgr.h" -#include "access/genam.h" +#include <postgres.h> -#include "utils/palloc.h" -#include "access/htup.h" -#include "storage/lmgr.h" -#include "storage/bufpage.h" -#include <stdio.h> +#include <storage/bufmgr.h> +#include <access/genam.h> +#include <storage/lmgr.h> +#include <storage/bufpage.h> +#include <access/rtree.h> +#include <access/rtstrat.h> +#ifndef HAVE_MEMMOVE +# include <regex/utils.h> +#else +# include <string.h> +#endif -#include "access/rtree.h" -#include "access/rtstrat.h" /* routines defined and used here */ static void rtregscan(IndexScanDesc s); |