1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

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

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