From de53ce8131fec9bfaa48f646836b7eca17c168e2 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Thu, 12 Oct 2000 06:06:50 +0000 Subject: Support for conversion between UNICODE and other encodings currently ISO8859-[1-5] and EUC_JP are supported. support for other encodings will be coming soon. --- src/backend/utils/mb/palloc.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/backend/utils/mb/palloc.c (limited to 'src/backend/utils/mb/palloc.c') 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) +{ +} -- cgit v1.2.3