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/rtree.c | |
parent | 6608278ea40a57ba55ee83771e9cf995d94cd269 (diff) |
One more to go
Diffstat (limited to 'src/backend/access/rtree/rtree.c')
-rw-r--r-- | src/backend/access/rtree/rtree.c | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/src/backend/access/rtree/rtree.c b/src/backend/access/rtree/rtree.c index 21ee69243dd..6dfe3b7f37f 100644 --- a/src/backend/access/rtree/rtree.c +++ b/src/backend/access/rtree/rtree.c @@ -7,34 +7,30 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.8 1996/11/03 22:58:06 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.9 1996/11/05 10:54:18 scrappy Exp $ * *------------------------------------------------------------------------- */ -#include <stdio.h> - -#include "postgres.h" -#include "access/genam.h" - -#include "utils/palloc.h" -#include "catalog/index.h" - -#include "access/rtscan.h" - -#include "storage/lmgr.h" - -#include "access/rtree.h" - -#include "storage/bufmgr.h" - -#include "utils/geo-decls.h" - -#include "executor/executor.h" - -#include "access/heapam.h" - -#include "storage/bufpage.h" +#include <postgres.h> + +#include <access/genam.h> +#include <catalog/index.h> +#include <access/rtscan.h> +#include <storage/lmgr.h> +#include <access/rtree.h> +#include <storage/bufmgr.h> +#include <utils/geo-decls.h> +#include <executor/executor.h> +#include <access/heapam.h> +#include <fmgr.h> +#include <storage/bufpage.h> + +#ifndef HAVE_MEMMOVE +# include <regex/utils.h> +#else +# include <string.h> +#endif typedef struct SPLITVEC { OffsetNumber *spl_left; |