From 1f1a65a9e4c602cd80458b213c28eadbdb5b1de1 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Sat, 21 May 2022 17:27:54 +0200 Subject: [PATCH] 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/. --- src/nvim/os/fs.h | 3 +++ 1 file changed, 3 insertions(+) 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