summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.decls
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2001-09-27 20:32:34 (GMT)
committerdgp <dgp@noemail.net>2001-09-27 20:32:34 (GMT)
commit9bdefca25877cca14298b589bf7a3a3a05db2446 (patch)
tree588b769345699efc0e369fb5169a677a6d08c569 /generic/tclInt.decls
parentf719b78520f397005129fa6371d5de3ed6685233 (diff)
downloadtcl-9bdefca25877cca14298b589bf7a3a3a05db2446.zip
tcl-9bdefca25877cca14298b589bf7a3a3a05db2446.tar.gz
tcl-9bdefca25877cca14298b589bf7a3a3a05db2446.tar.bz2
* Updated APIs in
generic/tclProc.c and generic/tclVar.c according to the guidelines of TIP 27. [Patch 465442] FossilOrigin-Name: e3f244969b6f107e23b5038241294b6ed21d7067
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r--generic/tclInt.decls7
1 files changed, 4 insertions, 3 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls
index 39338cd..c179a9b 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.33 2001/09/25 16:23:56 dgp Exp $
+# RCS: @(#) $Id: tclInt.decls,v 1.34 2001/09/27 20:32:35 dgp Exp $
library tcl
@@ -109,7 +109,7 @@ declare 22 generic {
int *sizePtr, int *bracePtr)
}
declare 23 generic {
- Proc * TclFindProc(Interp *iPtr, char *procName)
+ Proc * TclFindProc(Interp *iPtr, CONST char *procName)
}
declare 24 generic {
int TclFormatInt(char *buffer, long n)
@@ -140,7 +140,8 @@ declare 31 generic {
char * TclGetExtension(char *name)
}
declare 32 generic {
- int TclGetFrame(Tcl_Interp *interp, char *str, CallFrame **framePtrPtr)
+ int TclGetFrame(Tcl_Interp *interp, CONST char *str, \
+ CallFrame **framePtrPtr)
}
declare 33 generic {
TclCmdProcType TclGetInterpProc(void)