diff options
author | dgp <dgp@users.sourceforge.net> | 2001-09-24 21:10:32 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-09-24 21:10:32 (GMT) |
commit | 85efd4f6340d3db40be6608dc383cf19efb4fecf (patch) | |
tree | 9fe3b099b7850769ca7b1bbf5be9ee6bcc10f7a4 /generic/tclInt.decls | |
parent | bb93c0bc5c4d8116d1c04051c5f999615b5f06ff (diff) | |
download | tcl-85efd4f6340d3db40be6608dc383cf19efb4fecf.zip tcl-85efd4f6340d3db40be6608dc383cf19efb4fecf.tar.gz tcl-85efd4f6340d3db40be6608dc383cf19efb4fecf.tar.bz2 |
* Updated APIs in
generic/tclUtil.c according to the guidelines of TIP 27.
[Patch 464553]
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index ef88533..575d110 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tclInt.decls,v 1.31 2001/09/10 17:17:41 andreas_kupries Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.32 2001/09/24 21:10:32 dgp Exp $ library tcl @@ -243,7 +243,7 @@ declare 58 generic { # Tcl_DString *dirPtr, char *pattern, char *tail) #} declare 60 generic { - int TclNeedSpace(char *start, char *end) + int TclNeedSpace(CONST char *start, CONST char *end) } declare 61 generic { Tcl_Obj * TclNewProcBodyObj(Proc *procPtr) @@ -532,7 +532,7 @@ declare 138 generic { # Tcl_PackageInitProc **proc2Ptr, ClientData *clientDataPtr) #} declare 140 generic { - int TclLooksLikeInt(char *bytes, int length) + int TclLooksLikeInt(CONST char *bytes, int length) } # This is used by TclX, but should otherwise be considered private declare 141 generic { |