mirror of
https://github.com/postgres/postgres.git
synced 2025-11-15 03:41:20 +03:00
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.
This commit is contained in:
25
src/backend/utils/mb/palloc.c
Normal file
25
src/backend/utils/mb/palloc.c
Normal file
@@ -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)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user