summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixPort.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-10-21 21:32:38 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-10-21 21:32:38 (GMT)
commit817a97238eb4d10f5fbb213987776efb3f86adc9 (patch)
tree92011770b39e676310245589395f0e0169aa3623 /unix/tclUnixPort.h
parent7398a025d45df93243a3f96d1fddf17a86acd707 (diff)
downloadtcl-817a97238eb4d10f5fbb213987776efb3f86adc9.zip
tcl-817a97238eb4d10f5fbb213987776efb3f86adc9.tar.gz
tcl-817a97238eb4d10f5fbb213987776efb3f86adc9.tar.bz2
Formatting, PTR2INT range improvements, and remove some macro's only used on Cygwin, which are no longer necessary
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r--unix/tclUnixPort.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h
index 7c533f5..70b2257 100644
--- a/unix/tclUnixPort.h
+++ b/unix/tclUnixPort.h
@@ -675,7 +675,7 @@ typedef int socklen_t;
*---------------------------------------------------------------------------
*/
-#define TclpSysAlloc(size) malloc(size)
+#define TclpSysAlloc(size) malloc(size)
#define TclpSysFree(ptr) free(ptr)
#define TclpSysRealloc(ptr, size) realloc(ptr, size)