summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2003-11-14 23:21:01 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2003-11-14 23:21:01 (GMT)
commit73e5a176f2a3f45210d7ea8d72683ec4c8128c4b (patch)
tree2b42c119e735fa5a23d1e4521793e39cf223ad8f /unix
parente588870646ad50d5effe1d32924444bc15a7b53a (diff)
downloadtcl-73e5a176f2a3f45210d7ea8d72683ec4c8128c4b.zip
tcl-73e5a176f2a3f45210d7ea8d72683ec4c8128c4b.tar.gz
tcl-73e5a176f2a3f45210d7ea8d72683ec4c8128c4b.tar.bz2
TIP#138 implementation plus extra test stuff [Patch 731356]
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixPort.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index eee9d71..bfeb161 100644
--- a/unix/tclUnixPort.h
+++ b/unix/tclUnixPort.h
@@ -19,7 +19,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclUnixPort.h,v 1.30 2003/11/11 08:24:55 davygrvy Exp $
+ * RCS: @(#) $Id: tclUnixPort.h,v 1.31 2003/11/14 23:21:02 dkf Exp $
*/
#ifndef _TCLUNIXPORT
@@ -532,15 +532,12 @@ typedef int socklen_t;
#define TclpReleaseFile(file) /* Nothing. */
/*
- * The following defines wrap the system memory allocation routines for
- * use by tclAlloc.c. By default off unused on Unix.
+ * The following defines wrap the system memory allocation routines.
*/
-#if USE_TCLALLOC
-# define TclpSysAlloc(size, isBin) malloc((size_t)size)
-# define TclpSysFree(ptr) free((char*)ptr)
-# define TclpSysRealloc(ptr, size) realloc((char*)ptr, (size_t)size)
-#endif
+#define TclpSysAlloc(size, isBin) malloc((size_t)size)
+#define TclpSysFree(ptr) free((char*)ptr)
+#define TclpSysRealloc(ptr, size) realloc((char*)ptr, (size_t)size)
/*
* The following macros and declaration wrap the C runtime library