Use __SIZE_TYPE__ for size_t, __PTRDIFF_TYPE__ for ptrdiff_t.
[pintos-anon] / src / lib / stdlib.h
1 #ifndef __LIB_STDLIB_H
2 #define __LIB_STDLIB_H
3
4 #include <stddef.h>
5
6 int atoi (const char *);
7
8 #endif /* lib/stdlib.h */