aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gist.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-05 08:19:01 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-05 08:19:01 +0000
commit0cf60fb7182a76437d9953c75c649fd5ea1d43ca (patch)
treedf29f2b761a97e0d6f8f3bc67cd848e06ace30c9 /src/backend/access/gist/gist.c
parentd1e9a761317271eb0c7a317fad123a18923ebfce (diff)
downloadpostgresql-0cf60fb7182a76437d9953c75c649fd5ea1d43ca.tar.gz
postgresql-0cf60fb7182a76437d9953c75c649fd5ea1d43ca.zip
More cleaned out #include files
Makefile fixed for fmgr.h
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r--src/backend/access/gist/gist.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c
index ad817f950d8..fa29a961773 100644
--- a/src/backend/access/gist/gist.c
+++ b/src/backend/access/gist/gist.c
@@ -11,23 +11,24 @@
*-------------------------------------------------------------------------
*/
-#include "postgres.h"
-
-#include "fmgr.h"
-#include "access/genam.h"
-#include "access/gist.h"
-#include "access/gistscan.h"
-#include "access/heapam.h"
-#include "catalog/index.h"
-#include "executor/executor.h"
-#include "storage/bufmgr.h"
-#include "storage/bufpage.h"
-#include "storage/lmgr.h"
-#include "utils/palloc.h"
-#include "utils/syscache.h"
+#include <postgres.h>
+
+#include <fmgr.h>
+#include <access/genam.h>
+#include <access/gist.h>
+#include <access/gistscan.h>
+#include <access/heapam.h>
+#include <catalog/index.h>
+#include <executor/executor.h>
+#include <storage/bufmgr.h>
+#include <storage/bufpage.h>
+#include <storage/lmgr.h>
+#include <utils/syscache.h>
#ifndef HAVE_MEMMOVE
-# include "regex/utils.h"
+# include <regex/utils.h>
+#else
+# include <string.h>
#endif
/* non-export function prototypes */