diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2001-12-18 15:21:20 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2001-12-18 15:21:20 (GMT) |
commit | 315bd588df6de70180a2b3279c7364f742ae39c0 (patch) | |
tree | ea1bfda2c044ad0afd621d6bcb88bbf1310f7961 /generic/tcl.decls | |
parent | b3487fd01575260657f3048607365dc2aa3ad6ac (diff) | |
download | tcl-315bd588df6de70180a2b3279c7364f742ae39c0.zip tcl-315bd588df6de70180a2b3279c7364f742ae39c0.tar.gz tcl-315bd588df6de70180a2b3279c7364f742ae39c0.tar.bz2 |
Minor stub-table fixes; see ChangeLog for details
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 722cc80..f8be2c2 100644 --- a/generic/tcl.decls +++ b/generic/tcl.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: tcl.decls,v 1.66 2001/11/21 02:36:20 hobbs Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.67 2001/12/18 15:21:20 dkf Exp $ library tcl @@ -1508,14 +1508,14 @@ declare 428 generic { char * Tcl_AttemptAlloc(unsigned int size) } declare 429 generic { - char * Tcl_AttemptDbCkalloc(unsigned int size, char *file, int line) + char * Tcl_AttemptDbCkalloc(unsigned int size, CONST char *file, int line) } declare 430 generic { char * Tcl_AttemptRealloc(char *ptr, unsigned int size) } declare 431 generic { - char * Tcl_AttemptDbCkrealloc(char *ptr, unsigned int size, char *file, - int line) + char * Tcl_AttemptDbCkrealloc(char *ptr, unsigned int size, + CONST char *file, int line) } declare 432 generic { int Tcl_AttemptSetObjLength(Tcl_Obj *objPtr, int length) |