aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/decoration.c
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2023-11-25 11:32:32 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2023-11-25 17:41:33 +0100
commita827003e3052c6d9ee7bdb71518182e9bd76317d (patch)
treec1b6276a2c74bfc1f190f518e7d098c78e99b3b9 /src/nvim/decoration.c
parent03b7d35b5485b6a66bcd92027e43c838766bb205 (diff)
downloadrneovim-a827003e3052c6d9ee7bdb71518182e9bd76317d.tar.gz
rneovim-a827003e3052c6d9ee7bdb71518182e9bd76317d.tar.bz2
rneovim-a827003e3052c6d9ee7bdb71518182e9bd76317d.zip
build: rework IWYU mapping files
Create mapping to most of the C spec and some POSIX specific functions. This is more robust than relying files shipped with IWYU.
Diffstat (limited to 'src/nvim/decoration.c')
-rw-r--r--src/nvim/decoration.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/decoration.c b/src/nvim/decoration.c
index 43b07501a0..f860b65c93 100644
--- a/src/nvim/decoration.c
+++ b/src/nvim/decoration.c
@@ -1,7 +1,13 @@
#include <assert.h>
#include <limits.h>
+#include <stddef.h>
+#include <stdlib.h>
+#include <string.h>
#include "nvim/api/extmark.h"
+#include "nvim/api/private/defs.h"
+#include "nvim/api/private/helpers.h"
+#include "nvim/ascii.h"
#include "nvim/buffer.h"
#include "nvim/decoration.h"
#include "nvim/drawscreen.h"
@@ -9,8 +15,10 @@
#include "nvim/fold.h"
#include "nvim/highlight.h"
#include "nvim/highlight_group.h"
+#include "nvim/mbyte.h"
#include "nvim/memory.h"
#include "nvim/move.h"
+#include "nvim/option_vars.h"
#include "nvim/pos.h"
#include "nvim/sign.h"