diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-17 20:18:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-17 20:18:55 +0000 |
commit | 3406901a2928627477374769416a32b01a08b131 (patch) | |
tree | e045a16716bbeb4b90ed143260887e23f96939f5 /src/backend/access/gist | |
parent | c62b8a68bf60a451f57fd026bacc91648de7433a (diff) | |
download | postgresql-3406901a2928627477374769416a32b01a08b131.tar.gz postgresql-3406901a2928627477374769416a32b01a08b131.zip |
Move some system includes into c.h, and remove duplicates.
Diffstat (limited to 'src/backend/access/gist')
-rw-r--r-- | src/backend/access/gist/gist.c | 5 | ||||
-rw-r--r-- | src/backend/access/gist/gistget.c | 5 | ||||
-rw-r--r-- | src/backend/access/gist/gistscan.c | 5 |
3 files changed, 0 insertions, 15 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 8dab9755cc8..0e4263b80ec 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -22,11 +22,6 @@ #include "executor/executor.h" #include "utils/syscache.h" -#ifndef HAVE_MEMMOVE -#include <regex/utils.h> -#else -#include <string.h> -#endif /* non-export function prototypes */ static InsertIndexResult gistdoinsert(Relation r, IndexTuple itup, diff --git a/src/backend/access/gist/gistget.c b/src/backend/access/gist/gistget.c index f35a0f7cd37..fc18377a94a 100644 --- a/src/backend/access/gist/gistget.c +++ b/src/backend/access/gist/gistget.c @@ -16,11 +16,6 @@ #include "access/gist.h" #include "executor/execdebug.h" -#ifndef HAVE_MEMMOVE -#include <regex/utils.h> -#else -#include <string.h> -#endif static OffsetNumber gistfindnext(IndexScanDesc s, Page p, OffsetNumber n, diff --git a/src/backend/access/gist/gistscan.c b/src/backend/access/gist/gistscan.c index c4553094430..e7a864985a4 100644 --- a/src/backend/access/gist/gistscan.c +++ b/src/backend/access/gist/gistscan.c @@ -16,11 +16,6 @@ #include "access/gist.h" #include "access/gistscan.h" -#ifndef HAVE_MEMMOVE -#include <regex/utils.h> -#else -#include <string.h> -#endif /* routines defined and used here */ static void gistregscan(IndexScanDesc s); |