Commit 940b3988 authored by Sam Lantinga's avatar Sam Lantinga

Default to build SDL without MSVCRT

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401350
parent 80444aef
No preview for this file type
......@@ -27,8 +27,14 @@
#include <sys/types.h>
#ifdef _MSC_VER
/* FIXME!! */
typedef unsigned int size_t;
#ifndef _SIZE_T_DEFINED
#ifdef _WIN64
typedef unsigned __int64 size_t;
#else
typedef _W64 unsigned int size_t;
#endif
#define _SIZE_T_DEFINED
#endif
typedef size_t uintptr_t;
#endif
......
This diff is collapsed.
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