5 /* size_t is defined elsewhere */
6 #if __SIZEOF_POINTER__ == 4
7 typedef unsigned int size_t;
8 #elif __SIZEOF_POINTER__ == 8
9 typedef unsigned long size_t;
11 #error "unsupported architecture"
14 void __attribute__ ((noreturn
)) exit(int);
17 void *calloc(size_t, size_t);
20 extern unsigned long int strtoul(const char *nptr
,
21 char **endptr
, int base
);