neovim/third-party/msvc-compat/unistd.h
b-r-o-c-k fa6f892055 build/msvc: Add CMakeLists.txt and header for Unibilium
A header was added for compatibility with MSVC and CMakeLists.txt was
added for building with CMake.
2018-03-01 22:48:15 -06:00

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