summaryrefslogtreecommitdiff
path: root/time/win32
diff options
context:
space:
mode:
Diffstat (limited to 'time/win32')
-rw-r--r--time/win32/time.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/time/win32/time.c b/time/win32/time.c
index f45f74850..71d91396b 100644
--- a/time/win32/time.c
+++ b/time/win32/time.c
@@ -230,3 +230,7 @@ apr_status_t apr_put_os_exp_time(apr_exploded_time_t *aprtime,
return APR_SUCCESS;
}
+void apr_sleep(apr_interval_time_t t)
+{
+ Sleep(t/1000);
+}