diff options
author | Robert Drehmel <robert@FreeBSD.org> | 2002-08-15 09:25:04 +0000 |
---|---|---|
committer | Robert Drehmel <robert@FreeBSD.org> | 2002-08-15 09:25:04 +0000 |
commit | 5618f72405ba7a6b9d960d494f9db670ba994b3f (patch) | |
tree | b37b20746e471ae334376a361c54543969e8e35f /lib/libc/stdlib/strtoumax.c | |
parent | 0d533e437d5ab3149e9380d9b0b7819221869d9f (diff) |
Notes
Diffstat (limited to 'lib/libc/stdlib/strtoumax.c')
-rw-r--r-- | lib/libc/stdlib/strtoumax.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/stdlib/strtoumax.c b/lib/libc/stdlib/strtoumax.c index 503fb6b3ae98..07206be28fa3 100644 --- a/lib/libc/stdlib/strtoumax.c +++ b/lib/libc/stdlib/strtoumax.c @@ -49,10 +49,7 @@ __FBSDID("$FreeBSD$"); * alphabets and digits are each contiguous. */ uintmax_t -strtoumax(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtoumax(const char *__restrict nptr, char **__restrict endptr, int base) { const char *s; uintmax_t acc; |