Made the size_t declaration compatible with GCC.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-01-09 00:31:14 +01:00
parent 66c411b43a
commit 91015a2ea7
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,7 @@
#ifndef _SIZE_T_DECL
#ifndef _SIZE_T_DECLARED /* Compabillity with gcc */
#define _SIZE_T_DECL
#define _SIZE_T_DECLARED
typedef __size_t size_t;
#endif
#endif