diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2013-12-30 10:24:20 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2013-12-30 10:24:20 (GMT) |
| commit | af970ce4578746c01560160938a3ab93b11fd0f3 (patch) | |
| tree | 9dd08e96712d0bbeb26b46b3c2ac5d1312d63be7 /win/tclWinTime.c | |
| parent | 830a18d4d8114998c98667bceaa37e2f084503ff (diff) | |
| parent | 87c73c7a5ce9591b246bf6123facd9577c70ffce (diff) | |
| download | tcl-af970ce4578746c01560160938a3ab93b11fd0f3.zip tcl-af970ce4578746c01560160938a3ab93b11fd0f3.tar.gz tcl-af970ce4578746c01560160938a3ab93b11fd0f3.tar.bz2 | |
merge main working branch
Diffstat (limited to 'win/tclWinTime.c')
| -rw-r--r-- | win/tclWinTime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c index daa229d..7045c72 100644 --- a/win/tclWinTime.c +++ b/win/tclWinTime.c @@ -280,7 +280,7 @@ NativeGetTime( Tcl_Time *timePtr, ClientData clientData) { - struct timeb t; + struct _timeb t; int useFtime = 1; /* Flag == TRUE if we need to fall back on * ftime rather than using the perf counter. */ @@ -446,7 +446,7 @@ NativeGetTime( * High resolution timer is not available. Just use ftime. */ - ftime(&t); + _ftime(&t); timePtr->sec = (long)t.time; timePtr->usec = t.millitm * 1000; } |
