summaryrefslogtreecommitdiffstats
path: root/generic/tclCkalloc.c
diff options
context:
space:
mode:
authormig <mig>2011-03-21 14:42:36 (GMT)
committermig <mig>2011-03-21 14:42:36 (GMT)
commit4adb390e57830d740102d249668f5166e1382d54 (patch)
tree6f673c749a965f87bd3edcab20ddaebdd2f706f2 /generic/tclCkalloc.c
parent76f634d965ba2068da47c0af4090a42bf6fd507d (diff)
parent3e9e8fa060570aac68672d72855fb9db5b0f843a (diff)
downloadtcl-4adb390e57830d740102d249668f5166e1382d54.zip
tcl-4adb390e57830d740102d249668f5166e1382d54.tar.gz
tcl-4adb390e57830d740102d249668f5166e1382d54.tar.bz2
remove one level of allocator indirection in non-memdebug builds, imported from mig-alloc-reform.
Diffstat (limited to 'generic/tclCkalloc.c')
-rw-r--r--generic/tclCkalloc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclCkalloc.c b/generic/tclCkalloc.c
index 9d63ebf..056841d 100644
--- a/generic/tclCkalloc.c
+++ b/generic/tclCkalloc.c
@@ -20,6 +20,12 @@
#define FALSE 0
#define TRUE 1
+#undef Tcl_Alloc
+#undef Tcl_Free
+#undef Tcl_Realloc
+#undef Tcl_AttemptAlloc
+#undef Tcl_AttemptRealloc
+
#ifdef TCL_MEM_DEBUG
/*
@@ -736,12 +742,6 @@ Tcl_AttemptDbCkrealloc(
*----------------------------------------------------------------------
*/
-#undef Tcl_Alloc
-#undef Tcl_Free
-#undef Tcl_Realloc
-#undef Tcl_AttemptAlloc
-#undef Tcl_AttemptRealloc
-
char *
Tcl_Alloc(
unsigned int size)