diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
commit | 9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (patch) | |
tree | c97d5f26e89cc9d33c5be420a5e7688835644c77 /src/backend/access/rtree/rtree.c | |
parent | 62d146bdcd784280b573acd8af52488e66e212cf (diff) | |
download | postgresql-9a8aeb23a19ee6833480d4c12719d9fd26ad8571.tar.gz postgresql-9a8aeb23a19ee6833480d4c12719d9fd26ad8571.zip |
Another 'mega-commit' of back-patches ...
- integrating the #include file cleanup that Bruce recently did
- got the CPU change to adt/Makefile
- changing DOUBLEALIGN -> MAXALIGN
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 { |