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/.
This commit is contained in:
dundargoc
2022-05-21 17:27:54 +02:00
committed by GitHub
parent 55246d44f9
commit 1f1a65a9e4

View File

@@ -1,6 +1,9 @@
#ifndef NVIM_OS_FS_H #ifndef NVIM_OS_FS_H
#define 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 #ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/fs.h.generated.h" # include "os/fs.h.generated.h"
#endif #endif