diff options
Diffstat (limited to 'src/win/util.c')
-rw-r--r-- | src/win/util.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/win/util.c b/src/win/util.c index 4bbeb315..4de638f5 100644 --- a/src/win/util.c +++ b/src/win/util.c @@ -1873,3 +1873,7 @@ int uv__random_rtlgenrandom(void* buf, size_t buflen) { return 0; } + +void uv_sleep(unsigned int msec) { + Sleep(msec); +} |