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.h | |
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.h')
-rw-r--r-- | generic/tclInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 57e9e31..c1a6785 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -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.h,v 1.118.2.26 2006/11/28 22:20:01 andreas_kupries Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.118.2.27 2007/04/21 19:52:14 kennykb Exp $ */ #ifndef _TCLINT @@ -1702,6 +1702,7 @@ typedef struct TclFile_ *TclFile; */ typedef struct TclpTime_t_ *TclpTime_t; +typedef struct TclpTime_t_ *CONST TclpTime_t_CONST; /* * The "globParameters" argument of the function TclGlob is an |