diff options
Diffstat (limited to 'lib/libc/src/string/atoi.c')
-rw-r--r-- | lib/libc/src/string/atoi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/src/string/atoi.c b/lib/libc/src/string/atoi.c index 24943da..920e561 100644 --- a/lib/libc/src/string/atoi.c +++ b/lib/libc/src/string/atoi.c @@ -32,7 +32,7 @@ #define IS_DIGIT(C) ((C >= '0' && C <= '9')) int -atoi(char *s) +atoi(const char *s) { int n, sign; |