diff options
author | Kevin B Kenny <kennykb@acm.org> | 2004-05-17 14:26:31 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2004-05-17 14:26:31 (GMT) |
commit | 02328b407284a12dc2109146c3f29cae15d45a28 (patch) | |
tree | 636791149a751acb57bd43a77003dc5fe427a49f /generic/tclInt.decls | |
parent | aeeb2dda569d75a5f5162a97de263878e7136478 (diff) | |
download | tcl-02328b407284a12dc2109146c3f29cae15d45a28.zip tcl-02328b407284a12dc2109146c3f29cae15d45a28.tar.gz tcl-02328b407284a12dc2109146c3f29cae15d45a28.tar.bz2 |
* generic/tclInt.decls: Restored TclpTime_t kludge to all
* generic/tclIntPlatDecls.h: places where it appeared before the
* unix/tclUnixPort.h changes of 14 May, because use of
* unix/tclUnixTime.h native time_t in its place requires
* win/tclWinTime.h: the 8.5 header reforms. [Bug #955146]
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 927e65c..d1dfc9b 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.1 2004/05/14 21:41:11 kennykb Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.59.2.2 2004/05/17 14:26:49 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 time_t *clock) + struct tm *TclpLocaltime(TclpTime_t clock) } declare 183 generic { - struct tm *TclpGmtime(CONST time_t *clock) + struct tm *TclpGmtime(TclpTime_t clock) } ############################################################################## @@ -990,11 +990,11 @@ declare 10 unix { # generic Stubs declare 11 unix { - struct tm * TclpLocaltime_unix(CONST time_t * clock) + struct tm * TclpLocaltime_unix(TclpTime_t clock) } declare 12 unix { - struct tm * TclpGmtime_unix(CONST time_t * clock) + struct tm * TclpGmtime_unix(TclpTime_t clock) } declare 13 unix { |