summaryrefslogtreecommitdiff
path: root/src/backend/utils/mb/palloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/utils/mb/palloc.c')
-rw-r--r--src/backend/utils/mb/palloc.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/backend/utils/mb/palloc.c b/src/backend/utils/mb/palloc.c
new file mode 100644
index 00000000000..e547e7a79e5
--- /dev/null
+++ b/src/backend/utils/mb/palloc.c
@@ -0,0 +1,25 @@
+#include "postgres.h"
+#include "utils/memutils.h"
+
+void
+elog(int lev, const char *fmt,...)
+{
+ printf(fmt);
+}
+
+MemoryContext CurrentMemoryContext;
+
+void *
+MemoryContextAlloc(MemoryContext context, Size size)
+{
+}
+
+void
+pfree(void *pointer)
+{
+}
+
+void *
+repalloc(void *pointer, Size size)
+{
+}