mage size_t typedef unsigned int instead of just int, thx devhc for suggesting

This commit is contained in:
Thilo Schulz 2011-02-08 17:25:45 +00:00
parent 48b03a035b
commit be4e459148

View file

@ -37,7 +37,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define NULL ((void *)0)
#endif
typedef int size_t;
typedef unsigned int size_t;
typedef char * va_list;
#define _INTSIZEOF(n) ( (sizeof(n) + sizeof(int) - 1) & ~(sizeof(int) - 1) )