aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/event.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/os/event.c')
-rw-r--r--src/nvim/os/event.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/os/event.c b/src/nvim/os/event.c
index a89dcdc2ed..dd2b9ba0d1 100644
--- a/src/nvim/os/event.c
+++ b/src/nvim/os/event.c
@@ -20,11 +20,12 @@
#define _destroy_event(x) // do nothing
KLIST_INIT(Event, Event, _destroy_event)
+#ifdef INCLUDE_GENERATED_DECLARATIONS
+# include "os/event.c.generated.h"
+#endif
static klist_t(Event) *event_queue;
static uv_timer_t timer;
static uv_prepare_t timer_prepare;
-static void timer_cb(uv_timer_t *handle);
-static void timer_prepare_cb(uv_prepare_t *);
void event_init()
{