ssize_t is missing on Windows, so typdef it.

svn path=/trunk/; revision=52370
This commit is contained in:
Jörg Mayer 2013-10-04 21:59:18 +00:00
parent 1f278f036a
commit 30f0ea3846
1 changed files with 4 additions and 0 deletions

View File

@ -407,3 +407,7 @@
/* _U_ isn't needed for C++, simply don't name the variable.
However, we do need it for some headers that are shared between C and C++. */
#define _U_ ${C_UNUSED}
#if defined(_WIN32)
typedef long ssize_t;
#endif