aboutsummaryrefslogtreecommitdiff
path: root/src/os/time.h
diff options
context:
space:
mode:
authorThomas Wienecke <wienecke.t@gmail.com>2014-03-27 12:38:33 +0100
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-27 19:57:55 -0300
commit5762c4e528cbd6629319bf3958d1f6554b399b20 (patch)
tree3be91959012944534451ec84584ff4be84286b7c /src/os/time.h
parent3f7011ab9185b4968e89086f77b054161a900beb (diff)
downloadrneovim-5762c4e528cbd6629319bf3958d1f6554b399b20.tar.gz
rneovim-5762c4e528cbd6629319bf3958d1f6554b399b20.tar.bz2
rneovim-5762c4e528cbd6629319bf3958d1f6554b399b20.zip
Rename mch_* functions to os_* in os module.
Diffstat (limited to 'src/os/time.h')
-rw-r--r--src/os/time.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/time.h b/src/os/time.h
index 503c218349..1511977a3e 100644
--- a/src/os/time.h
+++ b/src/os/time.h
@@ -5,7 +5,7 @@
#include <stdbool.h>
void time_init(void);
-void mch_delay(uint64_t ms, bool ignoreinput);
+void os_delay(uint64_t ms, bool ignoreinput);
#endif