blob: aa6c5bccc3c749008f81639aee089c7962bc870e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#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
|