1 /* 2 * bits64/stddef.h 3 */ 4 5 #define _SIZE_T 6 typedef unsigned long size_t; 7 8 #define _PTRDIFF_T 9 typedef signed long ptrdiff_t; 10 11