summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/utils.h b/utils.h
index 728d7b4..0053c84 100644
--- a/utils.h
+++ b/utils.h
@@ -94,13 +94,6 @@ extern void uFree(Opaque /* ptr */
#define uTypedCalloc(n,t) ((t *)uCalloc((unsigned)n,(unsigned)sizeof(t)))
#define uTypedRealloc(pO,n,t) ((t *)uRealloc((Opaque)pO,((unsigned)n)*sizeof(t)))
#define uTypedRecalloc(pO,o,n,t) ((t *)uRecalloc((Opaque)pO,((unsigned)o),((unsigned)n),sizeof(t)))
-#if (defined mdHasAlloca) && (mdHasAlloca)
-#define uTmpAlloc(n) ((Opaque)alloca((unsigned)n))
-#define uTmpFree(p)
-#else
-#define uTmpAlloc(n) uAlloc(n)
-#define uTmpFree(p) uFree(p)
-#endif
/***====================================================================***/