summaryrefslogtreecommitdiff
path: root/src/backend/utils/mb/palloc.c
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-09-22 08:44:49 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-09-22 08:44:49 +0000
commit8ebdac0ed5839cdaaa3ef44ecb917727af4634bb (patch)
tree95eab33e5b893ba0cee5d74eb129c714ae333bfd /src/backend/utils/mb/palloc.c
parent6bbdd7a9e29ac745267425a569d2f376bf3484df (diff)
downloadpostgresql-8ebdac0ed5839cdaaa3ef44ecb917727af4634bb.tar.gz
Remove test drivers
Also fix comment in conv.c.
Diffstat (limited to 'src/backend/utils/mb/palloc.c')
-rw-r--r--src/backend/utils/mb/palloc.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/backend/utils/mb/palloc.c b/src/backend/utils/mb/palloc.c
deleted file mode 100644
index 3e1b70aae9..0000000000
--- a/src/backend/utils/mb/palloc.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#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)
-{
-}