diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-05-21 17:27:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-21 17:27:54 +0200 |
commit | 1f1a65a9e4c602cd80458b213c28eadbdb5b1de1 (patch) | |
tree | a4f5e461a7195f91e7cd1c104717306dc6f6620e | |
parent | 55246d44f92beb17898d006e5324bf2d44f44c31 (diff) | |
download | rneovim-1f1a65a9e4c602cd80458b213c28eadbdb5b1de1.tar.gz rneovim-1f1a65a9e4c602cd80458b213c28eadbdb5b1de1.tar.bz2 rneovim-1f1a65a9e4c602cd80458b213c28eadbdb5b1de1.zip |
ci: fix lint errors caused by missing includes (#18673)
This will fix the `check-single-includes` check which started failing
after https://github.com/neovim/neovim/pull/18663/.
-rw-r--r-- | src/nvim/os/fs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/os/fs.h b/src/nvim/os/fs.h index b03090dfee..c68081da02 100644 --- a/src/nvim/os/fs.h +++ b/src/nvim/os/fs.h @@ -1,6 +1,9 @@ #ifndef NVIM_OS_FS_H #define NVIM_OS_FS_H +#include "nvim/os/fs_defs.h" // for uv_* +#include "nvim/types.h" // for char_u + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/fs.h.generated.h" #endif |