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/rtstrat.c | |
parent | 62d146bdcd784280b573acd8af52488e66e212cf (diff) |
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/rtstrat.c')
-rw-r--r-- | src/backend/access/rtree/rtstrat.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/backend/access/rtree/rtstrat.c b/src/backend/access/rtree/rtstrat.c index 6f838a4a4a9..b1900186b82 100644 --- a/src/backend/access/rtree/rtstrat.c +++ b/src/backend/access/rtree/rtstrat.c @@ -7,16 +7,15 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtstrat.c,v 1.11 1999/02/13 23:14:43 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtstrat.c,v 1.11.2.1 1999/08/02 05:24:44 scrappy Exp $ * *------------------------------------------------------------------------- */ -#include <postgres.h> +#include "postgres.h" -#include <utils/rel.h> -#include <access/rtree.h> -#include <access/istrat.h> +#include "access/istrat.h" +#include "access/rtree.h" static StrategyNumber RelationGetRTStrategy(Relation r, AttrNumber attnum, RegProcedure proc); |