aboutsummaryrefslogtreecommitdiff
path: root/src/os/time.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/time.h')
-rw-r--r--src/os/time.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/os/time.h b/src/os/time.h
index 3d35e422e3..f8e65e0c47 100644
--- a/src/os/time.h
+++ b/src/os/time.h
@@ -5,6 +5,8 @@
#include <stdbool.h>
void time_init(void);
-void os_delay(uint64_t ms, bool ignoreinput);
+void os_delay(uint64_t milliseconds, bool ignoreinput);
+void os_microdelay(uint64_t microseconds, bool ignoreinput);
#endif // NEOVIM_OS_TIME_H
+