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/strings.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/strings.c')
| -rw-r--r-- | src/nvim/strings.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index 2de65391cc..7505eaba64 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -9,6 +9,8 @@ #include <string.h> #include "auto/config.h" +#include "nvim/api/private/defs.h" +#include "nvim/api/private/helpers.h" #include "nvim/ascii_defs.h" #include "nvim/assert_defs.h" #include "nvim/charset.h" @@ -20,12 +22,12 @@ #include "nvim/garray.h" #include "nvim/garray_defs.h" #include "nvim/gettext_defs.h" -#include "nvim/globals.h" #include "nvim/macros_defs.h" #include "nvim/math.h" #include "nvim/mbyte.h" #include "nvim/mbyte_defs.h" #include "nvim/memory.h" +#include "nvim/memory_defs.h" #include "nvim/message.h" #include "nvim/option.h" #include "nvim/plines.h" |