diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-16 10:55:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 10:55:54 +0800 |
commit | bb4b4576e384c71890b4df4fa4f1ae76fad3a59d (patch) | |
tree | cfbee648282a9113496aec14eb7ce144eb791445 /src/nvim/regexp.c | |
parent | 326d46f690b383846f136f2a25523cffe2882f27 (diff) | |
download | rneovim-bb4b4576e384c71890b4df4fa4f1ae76fad3a59d.tar.gz rneovim-bb4b4576e384c71890b4df4fa4f1ae76fad3a59d.tar.bz2 rneovim-bb4b4576e384c71890b4df4fa4f1ae76fad3a59d.zip |
refactor: iwyu (#26062)
Diffstat (limited to 'src/nvim/regexp.c')
-rw-r--r-- | src/nvim/regexp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c index 8151d2e12a..48cde447b5 100644 --- a/src/nvim/regexp.c +++ b/src/nvim/regexp.c @@ -7,9 +7,11 @@ // #define REGEXP_DEBUG #include <assert.h> +#include <ctype.h> #include <inttypes.h> #include <limits.h> #include <stdbool.h> +#include <stddef.h> #include <string.h> #include <sys/types.h> @@ -22,6 +24,7 @@ #include "nvim/garray.h" #include "nvim/gettext.h" #include "nvim/globals.h" +#include "nvim/grid_defs.h" #include "nvim/keycodes.h" #include "nvim/macros.h" #include "nvim/mark.h" |