diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-10-21 21:32:38 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-10-21 21:32:38 (GMT) |
| commit | 817a97238eb4d10f5fbb213987776efb3f86adc9 (patch) | |
| tree | 92011770b39e676310245589395f0e0169aa3623 /unix/tclUnixPort.h | |
| parent | 7398a025d45df93243a3f96d1fddf17a86acd707 (diff) | |
| download | tcl-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.h | 2 |
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) |
