diff options
author | dgp <dgp@users.sourceforge.net> | 2001-09-28 01:21:52 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-09-28 01:21:52 (GMT) |
commit | b32ac06e6c6eecabdceefee25539d048dcfb00fe (patch) | |
tree | efc77c730c35b6fb82ceecf051d26b598c191f2e /library | |
parent | bb9116d73ba9d1c0da04e53d1451fffe964ee876 (diff) | |
download | tcl-b32ac06e6c6eecabdceefee25539d048dcfb00fe.zip tcl-b32ac06e6c6eecabdceefee25539d048dcfb00fe.tar.gz tcl-b32ac06e6c6eecabdceefee25539d048dcfb00fe.tar.bz2 |
* More CONST poisoning
fixes from the 2001-09-24 TIP 27 changes. CONST-ified
Tcl_FSLoadFile and TclpLoadFile. Report and patch from Kevin
Kenny. [Bug 465833]
Diffstat (limited to 'library')
-rw-r--r-- | library/ldAout.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/ldAout.tcl b/library/ldAout.tcl index e602e3a..243c6d4 100644 --- a/library/ldAout.tcl +++ b/library/ldAout.tcl @@ -18,7 +18,7 @@ # its .o file placed before all others in the command; then # "ld" is executed to bind the objects together. # -# RCS: @(#) $Id: ldAout.tcl,v 1.4 1999/08/19 02:59:40 hobbs Exp $ +# RCS: @(#) $Id: ldAout.tcl,v 1.5 2001/09/28 01:21:53 dgp Exp $ # # Copyright (c) 1995, by General Electric Company. All rights reserved. # @@ -182,7 +182,7 @@ proc tclLdAout {{cc {}} {shlib_suffix {}} {shlib_cflags none}} { append C {typedef int Tcl_PackageInitProc (Tcl_Interp *);} \n append C {Tcl_PackageInitProc *} \n append C TclLoadDictionary_ $modName { (symbol)} \n - append C { char * symbol;} \n + append C { CONST char * symbol;} \n append C { { int i; |