diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-09-30 12:05:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 12:05:28 +0800 |
commit | cf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3 (patch) | |
tree | bf9f5c708f7cc03513bf4af81bcacacd833912f5 /src/nvim/main.c | |
parent | 5f2d0b932907fc3814a2245e1beacd8a47aa256c (diff) | |
download | rneovim-cf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3.tar.gz rneovim-cf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3.tar.bz2 rneovim-cf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3.zip |
build(iwyu): add a few more _defs.h mappings (#25435)
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index c41683f3c5..fe80de98f6 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -10,13 +10,13 @@ #include <assert.h> #include <limits.h> #include <msgpack/pack.h> +#include <sanitizer/asan_interface.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "auto/config.h" #include "nvim/arglist.h" #include "nvim/ascii.h" #include "nvim/autocmd.h" @@ -29,7 +29,6 @@ #include "nvim/drawscreen.h" #include "nvim/eval.h" #include "nvim/eval/typval.h" -#include "nvim/eval/typval_defs.h" #include "nvim/eval/userfunc.h" #include "nvim/event/multiqueue.h" #include "nvim/event/stream.h" @@ -53,7 +52,6 @@ #include "nvim/macros.h" #include "nvim/main.h" #include "nvim/mark.h" -#include "nvim/memfile_defs.h" #include "nvim/memline.h" #include "nvim/memory.h" #include "nvim/message.h" @@ -69,7 +67,6 @@ #include "nvim/os/lang.h" #include "nvim/os/os.h" #include "nvim/os/stdpaths_defs.h" -#include "nvim/os/time.h" #include "nvim/path.h" #include "nvim/popupmenu.h" #include "nvim/pos.h" |