mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 13:45:15 -07:00
fa6f892055
A header was added for compatibility with MSVC and CMakeLists.txt was added for building with CMake.
11 lines
179 B
C
11 lines
179 B
C
#ifndef GUARD_UNIBILIUM_UNISTD_H_
|
|
#define GUARD_UNIBILIUM_UNISTD_H_
|
|
|
|
#ifdef _WIN64
|
|
typedef unsigned __int64 ssize_t;
|
|
#else
|
|
typedef _W64 unsigned int ssize_t;
|
|
#endif
|
|
|
|
#endif
|