diff options
author | mig <mig> | 2011-03-21 14:38:05 (GMT) |
---|---|---|
committer | mig <mig> | 2011-03-21 14:38:05 (GMT) |
commit | b3db9be3e756f6c6e6267a5691d47d6c5d5acf6d (patch) | |
tree | fb240687e5ad29242168840e64d568308b3eb355 /generic | |
parent | e2f462108ea96728189ad727b14d981ef17ec18d (diff) | |
download | tcl-b3db9be3e756f6c6e6267a5691d47d6c5d5acf6d.zip tcl-b3db9be3e756f6c6e6267a5691d47d6c5d5acf6d.tar.gz tcl-b3db9be3e756f6c6e6267a5691d47d6c5d5acf6d.tar.bz2 |
fix last commit
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclInt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index f728a80..a22348f 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -4501,9 +4501,9 @@ typedef struct NRE_callback { #include "tclTomMathDecls.h" #if !defined(USE_TCL_STUBS) && !defined(TCL_MEM_DEBUG) -#define Tcl_AttemptAlloc TclpAlloc -#define Tcl_AttemptRealloc TclpRealloc -#define Tcl_Free TclpFree +#define Tcl_AttemptAlloc(size) TclpAlloc(size) +#define Tcl_AttemptRealloc(ptr, size) TclpRealloc((ptr), (size)) +#define Tcl_Free(ptr) TclpFree(ptr) #endif #endif /* _TCLINT */ |