aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event/wstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/event/wstream.c')
-rw-r--r--src/nvim/event/wstream.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/event/wstream.c b/src/nvim/event/wstream.c
index e8f757874b..406ff1620d 100644
--- a/src/nvim/event/wstream.c
+++ b/src/nvim/event/wstream.c
@@ -1,13 +1,14 @@
#include <assert.h>
#include <stdbool.h>
+#include <stddef.h>
#include <uv.h>
-#include "nvim/event/loop.h"
+#include "nvim/event/defs.h"
#include "nvim/event/stream.h"
#include "nvim/event/wstream.h"
-#include "nvim/func_attr.h"
#include "nvim/macros_defs.h"
#include "nvim/memory.h"
+#include "nvim/types_defs.h"
#define DEFAULT_MAXMEM 1024 * 1024 * 2000