mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 11:26:37 +00:00
11 lines
169 B
C
11 lines
169 B
C
#ifndef NVIM_OS_OS_DEFS_H
|
|
#define NVIM_OS_OS_DEFS_H
|
|
|
|
#ifdef WIN32
|
|
# include "nvim/os/win_defs.h"
|
|
#else
|
|
# include "nvim/os/unix_defs.h"
|
|
#endif
|
|
|
|
#endif // NVIM_OS_DEFS_H
|