Commit 6a65bf6a authored by Ge van Geldorp's avatar Ge van Geldorp Committed by Alexandre Julliard

include/msvcrt: Make sure size_t is properly defined for 64-bit.

parent f0279726
......@@ -18,8 +18,18 @@ typedef unsigned short wchar_t;
#endif
#endif
#ifndef _MSC_VER
# ifndef __int64
# define __int64 long long
# endif
#endif
#ifndef _SIZE_T_DEFINED
#ifdef _WIN64
typedef unsigned __int64 size_t;
#else
typedef unsigned int size_t;
#endif
#define _SIZE_T_DEFINED
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment