aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/heap/stats.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/access/heap/stats.c')
-rw-r--r--src/backend/access/heap/stats.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/backend/access/heap/stats.c b/src/backend/access/heap/stats.c
index 1ec4b8bfc9f..f85af5f7d16 100644
--- a/src/backend/access/heap/stats.c
+++ b/src/backend/access/heap/stats.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.3 1996/10/20 08:32:01 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.4 1996/10/21 05:59:49 scrappy Exp $
*
* NOTES
* initam should be moved someplace else.
@@ -47,6 +47,16 @@
#include "utils/mcxt.h"
+#include "utils/palloc.h"
+
+#ifndef HAVE_MEMMOVE
+# include "regex/utils.h"
+#else
+# include <string.h>
+#endif
+
+#include <stdio.h>
+
/* ----------------
* InitHeapAccessStatistics
* ----------------