This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / Runtime / mem.h
diff --git a/Robust/src/Runtime/mem.h b/Robust/src/Runtime/mem.h
deleted file mode 100644 (file)
index ed92709..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef MEMH
-#define MEMH
-#include<stdlib.h>
-#include<stdio.h>
-
-#ifdef BOEHM_GC
-#include "gc.h"
-#define FREEMALLOC(x) GC_malloc(x)
-#define RUNMALLOC(x) GC_malloc(x)
-#define RUNFREE(x)
-#else
-#ifdef PRECISE_GC
-#include "garbage.h"
-#define RUNMALLOC(x) calloc(1,x)
-#define RUNFREE(x) free(x)
-#else
-#define FREEMALLOC(x) calloc(1,x)
-#define RUNMALLOC(x) calloc(1,x)
-#define RUNFREE(x) free(x)
-#endif
-#endif
-#endif