aboutsummaryrefslogtreecommitdiff
path: root/src/os/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/event.h')
-rw-r--r--src/os/event.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/os/event.h b/src/os/event.h
index 230bb6fab9..874d7130bf 100644
--- a/src/os/event.h
+++ b/src/os/event.h
@@ -2,15 +2,10 @@
#define NEOVIM_OS_EVENT_H
#include <stdint.h>
-
-typedef enum {
- kEventNone,
- kEventInput,
- kEventEof
-} EventType;
+#include <stdbool.h>
void event_init(void);
-EventType event_poll(int32_t ms);
+bool event_poll(int32_t ms);
#endif