Fix SSIZE_T definition problem when making with MSYS on Windows7

Patch provided by Martin Schlemmer <Martin.Schlemmer@nwu.ac.za> on the
mailing list.

Reviewed-by: Bryce Harrington <b.harrington@samsung.com>
This commit is contained in:
Bryce Harrington 2013-10-30 18:43:42 -07:00
parent 66f4140e73
commit 56a195a765

View file

@ -41,7 +41,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#ifndef _SSIZE_T_DEFINED
#if !defined(_SSIZE_T_DEFINED) && !defined(_SSIZE_T_)
typedef SSIZE_T ssize_t;
#endif
#endif