diff options
author | Kevin B Kenny <kennykb@acm.org> | 2007-04-21 19:52:12 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2007-04-21 19:52:12 (GMT) |
commit | 28e10d16ff23e12b9d930dcc0a73140af1265d93 (patch) | |
tree | 385a4c1bcb6c38cfebf2b69a1d8c73e24eb9ee8c /generic/tclInt.decls | |
parent | 9001e4a12a8cb6226719049f272585d73ca82f54 (diff) | |
download | tcl-28e10d16ff23e12b9d930dcc0a73140af1265d93.zip tcl-28e10d16ff23e12b9d930dcc0a73140af1265d93.tar.gz tcl-28e10d16ff23e12b9d930dcc0a73140af1265d93.tar.bz2 |
* generic/tclInt.decls: Yet another round of attempting
* generic/tclInt.h: to get the correct type signature
* unix/tclUnixPort.h: for TclpLocaltime and TclpGmtime.
* unix/tclUnixTime.c: CONST TclpTime_t is a 'time_t *CONST'
* win/tclWinTime.c: and not a 'CONST time_t*'!
* generic/tclIntDecls.h: [Bug 1677275]
* generic/tclIntPlatDecls.h: Regenerated.
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 82d5e49..120ed0b 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.6 2005/03/15 16:29:53 kennykb Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.59.2.7 2007/04/21 19:52:14 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(CONST TclpTime_t clock) + struct tm *TclpLocaltime(TclpTime_t_CONST clock) } declare 183 generic { - struct tm *TclpGmtime(CONST TclpTime_t clock) + struct tm *TclpGmtime(TclpTime_t_CONST clock) } declare 199 generic { @@ -998,11 +998,11 @@ declare 10 unix { # generic Stubs declare 11 unix { - struct tm * TclpLocaltime_unix(CONST TclpTime_t clock) + struct tm * TclpLocaltime_unix(TclpTime_t_CONST clock) } declare 12 unix { - struct tm * TclpGmtime_unix(CONST TclpTime_t clock) + struct tm * TclpGmtime_unix(TclpTime_t_CONST clock) } declare 13 unix { |