mirror of
https://github.com/postgres/postgres.git
synced 2025-11-13 16:22:44 +03:00
currently ISO8859-[1-5] and EUC_JP are supported. support for other encodings will be coming soon.
26 lines
290 B
C
26 lines
290 B
C
#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)
|
|
{
|
|
}
|