diff options
Diffstat (limited to 'src/backend/access/rtree/rtree.c')
-rw-r--r-- | src/backend/access/rtree/rtree.c | 30 |
1 files changed, 10 insertions, 20 deletions
diff --git a/src/backend/access/rtree/rtree.c b/src/backend/access/rtree/rtree.c index f62a4bf648a..811991b2f1c 100644 --- a/src/backend/access/rtree/rtree.c +++ b/src/backend/access/rtree/rtree.c @@ -7,30 +7,20 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.32 1999/05/25 16:07:38 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.32.2.1 1999/08/02 05:24:44 scrappy Exp $ * *------------------------------------------------------------------------- */ -#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 +#include "postgres.h" + +#include "access/genam.h" +#include "access/heapam.h" +#include "access/rtree.h" +#include "catalog/index.h" +#include "executor/executor.h" +#include "utils/geo_decls.h" + typedef struct SPLITVEC { |