Skip to content

Commit

Permalink
ci: fix lint errors caused by missing includes
Browse files Browse the repository at this point in the history
This will fix the `check-single-includes` check which started failing
after #18663.
  • Loading branch information
dundargoc committed May 21, 2022
1 parent 976f32a commit 6c4073c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/nvim/os/fs.h
@@ -1,6 +1,12 @@
#ifndef NVIM_OS_FS_H
#define NVIM_OS_FS_H

#include <stddef.h>
#include <stdio.h>

#include "nvim/os/fs_defs.h"
#include "nvim/types.h"

#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "os/fs.h.generated.h"
#endif
Expand Down

0 comments on commit 6c4073c

Please sign in to comment.