diff options
Diffstat (limited to 'lib/libc/stdlib/atoi.c')
| -rw-r--r-- | lib/libc/stdlib/atoi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/stdlib/atoi.c b/lib/libc/stdlib/atoi.c index 97b663d1..614bd75c 100644 --- a/lib/libc/stdlib/atoi.c +++ b/lib/libc/stdlib/atoi.c @@ -1,4 +1,6 @@ -#include <stdlib.h> +#include "stddef.h" // for NULL + +#include <stdlib.h> // for strtol, atoi int atoi(const char *str) { |
