summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2021-04-02 18:41:36 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2021-04-02 18:41:36 (GMT)
commit3628bed3baaae83cb1812e0e2250514376dd8d07 (patch)
tree7e6aabb34e6111f45115bbdc7e6e70ae738273fa /win
parent55bb44b8bec17ea6e369820e70c97d8939e1ff70 (diff)
downloadtcl-3628bed3baaae83cb1812e0e2250514376dd8d07.zip
tcl-3628bed3baaae83cb1812e0e2250514376dd8d07.tar.gz
tcl-3628bed3baaae83cb1812e0e2250514376dd8d07.tar.bz2
Don't do double definition; code was moved to tclInt.h previously.
Diffstat (limited to 'win')
-rw-r--r--win/tclWinTime.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/win/tclWinTime.c b/win/tclWinTime.c
index e05455f..a137df4 100644
--- a/win/tclWinTime.c
+++ b/win/tclWinTime.c
@@ -1556,33 +1556,6 @@ Tcl_QueryTimeProc(
}
/*
- *----------------------------------------------------------------------
- *
- * TclScaleTime --
- *
- * TIP #233 (Virtualized Time): Wrapper around the time virutalisation
- * rescale function.
- *
- * Results:
- * None
- *
- * Side effects:
- * Updates the time structure (given as an argument) with what the time
- * should be after virtualisation.
- *
- *----------------------------------------------------------------------
- */
-
-void
-TclScaleTime(
- Tcl_Time *timePtr)
-{
- if (timePtr != NULL && tclScaleTimeProcPtr != NULL) {
- tclScaleTimeProcPtr(timePtr, tclTimeClientData);
- }
-}
-
-/*
* Local Variables:
* mode: c
* c-basic-offset: 4