diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-09-18 14:38:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-09-18 14:38:26 (GMT) |
commit | 7a4fe54c26332c21cd95b01cc07bd74714d060ae (patch) | |
tree | 10f652d15b7acb570ecce58ddcc42c714e6f39ce /win/tclAppInit.c | |
parent | 64cc2359605a427ced84a960a02e770c9c184be1 (diff) | |
download | tcl-7a4fe54c26332c21cd95b01cc07bd74714d060ae.zip tcl-7a4fe54c26332c21cd95b01cc07bd74714d060ae.tar.gz tcl-7a4fe54c26332c21cd95b01cc07bd74714d060ae.tar.bz2 |
Finish libtommath's constification work. All done (hopefully). And make sure that C preprocessor directives have the '#' as first character on the line.
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r-- | win/tclAppInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index e06eaf5..ef9f98b 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -263,8 +263,8 @@ setargv( } /* Make sure we don't call ckalloc through the (not yet initialized) stub table */ - #undef Tcl_Alloc - #undef Tcl_DbCkalloc +# undef Tcl_Alloc +# undef Tcl_DbCkalloc argSpace = ckalloc(size * sizeof(char *) + (_tcslen(cmdLine) * sizeof(TCHAR)) + sizeof(TCHAR)); |