diff options
Diffstat (limited to 'src/os/time.h')
-rw-r--r-- | src/os/time.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/os/time.h b/src/os/time.h new file mode 100644 index 0000000000..503c218349 --- /dev/null +++ b/src/os/time.h @@ -0,0 +1,11 @@ +#ifndef NEOVIM_OS_TIME_H +#define NEOVIM_OS_TIME_H + +#include <stdint.h> +#include <stdbool.h> + +void time_init(void); +void mch_delay(uint64_t ms, bool ignoreinput); + +#endif + |