1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#ifndef _SYS___STDLIB_H_ #define _SYS___STDLIB_H_ #include <ansi_compat.h> #ifndef _SIZE_T_ #define _SIZE_T_ typedef unsigned int size_t; #endif #ifndef _WCHAR_T_ #define _WCHAR_T_ typedef unsigned int wchar_t; #endif #ifndef NULL #define NULL 0 #endif #endif