diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2000-10-12 06:06:50 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2000-10-12 06:06:50 +0000 |
commit | de53ce8131fec9bfaa48f646836b7eca17c168e2 (patch) | |
tree | 14171a94ac786a7cf357cc605810c34853902ffc /src/backend/utils/mb/palloc.c | |
parent | 6619ad11fffdf4481385a9977c72e3d3ca6f0c83 (diff) |
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.
Diffstat (limited to 'src/backend/utils/mb/palloc.c')
-rw-r--r-- | src/backend/utils/mb/palloc.c | 25 |
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) +{ +} |