diff options
Diffstat (limited to 'lib/libc/stdlib/strtoimax.c')
-rw-r--r-- | lib/libc/stdlib/strtoimax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/strtoimax.c b/lib/libc/stdlib/strtoimax.c index a41c74f..ec66018 100644 --- a/lib/libc/stdlib/strtoimax.c +++ b/lib/libc/stdlib/strtoimax.c @@ -49,7 +49,7 @@ __FBSDID("$FreeBSD$"); * alphabets and digits are each contiguous. */ intmax_t -strtoimax(const char *__restrict nptr, char **__restrict endptr, int base) +strtoimax(const char * __restrict nptr, char ** __restrict endptr, int base) { const char *s; uintmax_t acc; |