diff options
| author | mig <mig> | 2011-03-21 13:41:50 (GMT) |
|---|---|---|
| committer | mig <mig> | 2011-03-21 13:41:50 (GMT) |
| commit | b932130dfdf3d1ed4fcebbbb3ab0bfd2485a06c8 (patch) | |
| tree | 19aa8fa524b667d5513ed8719df931fa62957ce1 /generic/tclCkalloc.c | |
| parent | 8c9f4960b594c0b45cf2cc50b639c8218d09eab8 (diff) | |
| download | tcl-b932130dfdf3d1ed4fcebbbb3ab0bfd2485a06c8.zip tcl-b932130dfdf3d1ed4fcebbbb3ab0bfd2485a06c8.tar.gz tcl-b932130dfdf3d1ed4fcebbbb3ab0bfd2485a06c8.tar.bz2 | |
remove one level of indirection in non-mem-debug builds
Diffstat (limited to 'generic/tclCkalloc.c')
| -rw-r--r-- | generic/tclCkalloc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclCkalloc.c b/generic/tclCkalloc.c index 3b51f68..afc6594 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) |
