|
7 | 7 | * |
8 | 8 | * |
9 | 9 | * IDENTIFICATION |
10 | | - * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.8 1996/11/03 22:58:06 scrappy Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtree.c,v 1.9 1996/11/05 10:54:18 scrappy Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
14 | 14 |
|
15 | | -#include<stdio.h> |
16 | | - |
17 | | -#include"postgres.h" |
18 | | -#include"access/genam.h" |
19 | | - |
20 | | -#include"utils/palloc.h" |
21 | | -#include"catalog/index.h" |
22 | | - |
23 | | -#include"access/rtscan.h" |
24 | | - |
25 | | -#include"storage/lmgr.h" |
26 | | - |
27 | | -#include"access/rtree.h" |
28 | | - |
29 | | -#include"storage/bufmgr.h" |
30 | | - |
31 | | -#include"utils/geo-decls.h" |
32 | | - |
33 | | -#include"executor/executor.h" |
34 | | - |
35 | | -#include"access/heapam.h" |
36 | | - |
37 | | -#include"storage/bufpage.h" |
| 15 | +#include<postgres.h> |
| 16 | + |
| 17 | +#include<access/genam.h> |
| 18 | +#include<catalog/index.h> |
| 19 | +#include<access/rtscan.h> |
| 20 | +#include<storage/lmgr.h> |
| 21 | +#include<access/rtree.h> |
| 22 | +#include<storage/bufmgr.h> |
| 23 | +#include<utils/geo-decls.h> |
| 24 | +#include<executor/executor.h> |
| 25 | +#include<access/heapam.h> |
| 26 | +#include<fmgr.h> |
| 27 | +#include<storage/bufpage.h> |
| 28 | + |
| 29 | +#ifndefHAVE_MEMMOVE |
| 30 | +# include<regex/utils.h> |
| 31 | +#else |
| 32 | +# include<string.h> |
| 33 | +#endif |
38 | 34 |
|
39 | 35 | typedefstructSPLITVEC { |
40 | 36 | OffsetNumber*spl_left; |
|