diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-12-23 05:43:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-23 05:43:52 -0800 |
commit | 2a7d0ed6145bf3f8b139c2694563f460f829813a (patch) | |
tree | 8bb488f7cb612ecf56ccea2c62042012584eba68 /src/nvim/main.c | |
parent | 55c5d0de262b8a9eb03a65f6e6f45e8d26213eb4 (diff) | |
download | rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.tar.gz rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.tar.bz2 rneovim-2a7d0ed6145bf3f8b139c2694563f460f829813a.zip |
refactor: iwyu #31637
Result of `make iwyu` (after some "fixups").
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 17990a6735..348f246d27 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -7,6 +7,7 @@ #include <assert.h> #include <limits.h> #include <stdbool.h> +#include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -19,6 +20,7 @@ #endif #include "auto/config.h" // IWYU pragma: keep +#include "klib/kvec.h" #include "nvim/api/extmark.h" #include "nvim/api/private/defs.h" #include "nvim/api/private/helpers.h" @@ -79,9 +81,6 @@ #include "nvim/option.h" #include "nvim/option_defs.h" #include "nvim/option_vars.h" -#include "nvim/optionstr.h" -#include "nvim/os/fileio.h" -#include "nvim/os/fileio_defs.h" #include "nvim/os/fs.h" #include "nvim/os/input.h" #include "nvim/os/lang.h" |