diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-10-28 16:06:30 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-10-28 16:06:30 (GMT) |
commit | 61617a7891a8266415ac5a14e6dce92693e10c5c (patch) | |
tree | fa5e94f8a83450fe3df0bb0bb427b9b66aba15f6 /generic/tclInt.decls | |
parent | edd30d9489db089dcc47c6110335a1cee9bc6ed5 (diff) | |
download | tcl-61617a7891a8266415ac5a14e6dce92693e10c5c.zip tcl-61617a7891a8266415ac5a14e6dce92693e10c5c.tar.gz tcl-61617a7891a8266415ac5a14e6dce92693e10c5c.tar.bz2 |
added CONST to TclpLocaltime and TclpGmtime param throughout
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 12afb31..71434b5 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.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: tclInt.decls,v 1.59.2.4 2004/10/14 15:28:38 dkf Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.59.2.5 2004/10/28 16:06:32 kennykb Exp $ library tcl @@ -700,10 +700,10 @@ declare 173 generic { # TclpGmtime and TclpLocaltime promoted to the generic interface from unix declare 182 generic { - struct tm *TclpLocaltime(TclpTime_t clock) + struct tm *TclpLocaltime(CONST TclpTime_t clock) } declare 183 generic { - struct tm *TclpGmtime(TclpTime_t clock) + struct tm *TclpGmtime(CONST TclpTime_t clock) } declare 199 generic { @@ -998,11 +998,11 @@ declare 10 unix { # generic Stubs declare 11 unix { - struct tm * TclpLocaltime_unix(TclpTime_t clock) + struct tm * TclpLocaltime_unix(CONST TclpTime_t clock) } declare 12 unix { - struct tm * TclpGmtime_unix(TclpTime_t clock) + struct tm * TclpGmtime_unix(CONST TclpTime_t clock) } declare 13 unix { |