summaryrefslogtreecommitdiff
path: root/src/backend/utils/cache/fcache.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-06 10:32:10 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-06 10:32:10 +0000
commit0020e8790da4ead45c1e34fcf738d4a1a1f02735 (patch)
tree2bfd47d06f31cb4b7b2167cafb3bf6702417a4d9 /src/backend/utils/cache/fcache.c
parent1d0dd471fa129cb795f08e5189f5db335aacabbb (diff)
downloadpostgresql-0020e8790da4ead45c1e34fcf738d4a1a1f02735.tar.gz
Another directory that compiles with no errors, and few warnings
Diffstat (limited to 'src/backend/utils/cache/fcache.c')
-rw-r--r--src/backend/utils/cache/fcache.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/backend/utils/cache/fcache.c b/src/backend/utils/cache/fcache.c
index 2f2b76bf27..f4c5ef3e90 100644
--- a/src/backend/utils/cache/fcache.c
+++ b/src/backend/utils/cache/fcache.c
@@ -7,11 +7,15 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/Attic/fcache.c,v 1.2 1996/11/03 06:53:17 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/Attic/fcache.c,v 1.3 1996/11/06 10:31:22 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
+
+#include <nodes/parsenodes.h>
+#include <fmgr.h>
+
#include "access/htup.h"
#include "utils/catcache.h"
#include "utils/syscache.h"
@@ -22,9 +26,13 @@
#include "parser/parsetree.h" /* for getrelname() */
#include "utils/builtins.h"
#include "utils/fcache.h"
-#include "utils/palloc.h"
#include "nodes/primnodes.h"
#include "nodes/execnodes.h"
+#ifndef HAVE_MEMMOVE
+# include <regex/utils.h>
+#else
+# include <string.h>
+#endif
static Oid GetDynamicFuncArgType(Var *arg, ExprContext *econtext);
static FunctionCachePtr init_fcache(Oid foid,