]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - alloc.c
digraph and trigraph tests
[xonotic/gmqcc.git] / alloc.c
diff --git a/alloc.c b/alloc.c
index 807936a43b8d13c0a19aea18b33b0bcce248d8b4..ca6504a062bd76795934f8995b7f43f3acc77469 100644 (file)
--- a/alloc.c
+++ b/alloc.c
@@ -52,15 +52,3 @@ void memory_d(void *ptrn, unsigned int line, const char *file) {
        printf("[MEM] released:   %08u (bytes) at %s:%u\n", info->byte, file, line);
        free(data);
 }
-
-/*
- * Ensure the macros are not already defined otherwise the memory
- * tracker will fail.  I hate trying to fix macro bugs, this should
- * help stop any of that from occuring.
- */
-#ifdef mem_a
-#undef mem_a
-#endif
-#ifdef mem_d
-#undef mem_d
-#endif