summaryrefslogtreecommitdiffstats
path: root/win/tclWinTime.c
diff options
context:
space:
mode:
authorkennykb <kennykb@noemail.net>2007-04-21 19:52:12 (GMT)
committerkennykb <kennykb@noemail.net>2007-04-21 19:52:12 (GMT)
commitb99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee (patch)
tree385a4c1bcb6c38cfebf2b69a1d8c73e24eb9ee8c /win/tclWinTime.c
parent24280a507594ab75f1569d359b5ce106bce98fec (diff)
downloadtcl-b99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee.zip
tcl-b99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee.tar.gz
tcl-b99cebf55ba968c6b669e9d2a11de1cf1d8ad1ee.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. FossilOrigin-Name: c109ead7b6580bc2ed9f05a731312bd0eaa13272
Diffstat (limited to 'win/tclWinTime.c')
-rw-r--r--win/tclWinTime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c
index f1c9d6a..044268b 100644
--- a/win/tclWinTime.c
+++ b/win/tclWinTime.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinTime.c,v 1.14.2.10 2006/09/26 21:40:37 patthoyts Exp $
+ * RCS: @(#) $Id: tclWinTime.c,v 1.14.2.11 2007/04/21 19:52:15 kennykb Exp $
*/
#include "tclWinInt.h"
@@ -1100,7 +1100,7 @@ AccumulateSample( Tcl_WideInt perfCounter,
struct tm *
TclpGmtime( tt )
- CONST TclpTime_t tt;
+ TclpTime_t_CONST tt;
{
CONST time_t *timePtr = (CONST time_t *) tt;
/* Pointer to the number of seconds
@@ -1132,7 +1132,7 @@ TclpGmtime( tt )
struct tm *
TclpLocaltime( tt )
- CONST TclpTime_t tt;
+ TclpTime_t_CONST tt;
{
CONST time_t *timePtr = (CONST time_t *) tt;
/* Pointer to the number of seconds