mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 21:55:17 -07:00
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
|