mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
20 lines
409 B
C
20 lines
409 B
C
#ifndef NVIM_OS_OS_H
|
|
#define NVIM_OS_OS_H
|
|
|
|
#include <stdbool.h>
|
|
#include <uv.h>
|
|
|
|
#include "nvim/os/fs_defs.h"
|
|
#include "nvim/os/stdpaths_defs.h"
|
|
#include "nvim/vim.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "os/fs.h.generated.h"
|
|
# include "os/mem.h.generated.h"
|
|
# include "os/env.h.generated.h"
|
|
# include "os/users.h.generated.h"
|
|
# include "os/stdpaths.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_OS_OS_H
|