diff options
author | nijtmans <nijtmans> | 2010-04-02 23:11:55 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-04-02 23:11:55 (GMT) |
commit | 7b740a30c4476bd267eae2adfa261599303a9651 (patch) | |
tree | bc774ad9c5325b086c57e76b6155710bafd3f270 /generic/tcl.decls | |
parent | cc240f86c997bfabb858ee9cac79fe0eee309355 (diff) | |
download | tcl-7b740a30c4476bd267eae2adfa261599303a9651.zip tcl-7b740a30c4476bd267eae2adfa261599303a9651.tar.gz tcl-7b740a30c4476bd267eae2adfa261599303a9651.tar.bz2 |
Add missing "const" in signature,
and some formatting fixes
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 0e59216..b090747 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tcl.decls,v 1.173 2010/04/02 21:21:04 kennykb Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.174 2010/04/02 23:11:55 nijtmans Exp $ library tcl @@ -2308,15 +2308,15 @@ declare 626 generic { # TIP #357 (Export TclLoadFile and TclpFindSymbol) kbk declare 627 generic { int Tcl_LoadFile(Tcl_Interp *interp, Tcl_Obj *pathPtr, - const char *symv[], int flags, void* procPtrs, - Tcl_LoadHandle* handlePtr) + const char *const symv[], int flags, void *procPtrs, + Tcl_LoadHandle *handlePtr) } declare 628 generic { - void* Tcl_FindSymbol(Tcl_Interp* interp, Tcl_LoadHandle handle, - const char* symbol) + void* Tcl_FindSymbol(Tcl_Interp *interp, Tcl_LoadHandle handle, + const char *symbol) } declare 629 generic { - int Tcl_FSUnloadFile(Tcl_Interp* interp, Tcl_LoadHandle handlePtr) + int Tcl_FSUnloadFile(Tcl_Interp *interp, Tcl_LoadHandle handlePtr) } # ----- BASELINE -- FOR -- 8.6.0 ----- # |