diff options
Diffstat (limited to 'lib/libc/stdlib/strtoull.c')
| -rw-r--r-- | lib/libc/stdlib/strtoull.c | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/stdlib/strtoull.c b/lib/libc/stdlib/strtoull.c index bda9e3094a58..08bf118ad819 100644 --- a/lib/libc/stdlib/strtoull.c +++ b/lib/libc/stdlib/strtoull.c @@ -49,10 +49,7 @@ __FBSDID("$FreeBSD$");   * alphabets and digits are each contiguous.   */  unsigned long long -strtoull(nptr, endptr, base) -	const char *nptr; -	char **endptr; -	int base; +strtoull(const char *__restrict nptr, char **__restrict endptr, int base)  {  	const char *s;  	unsigned long long acc;  | 
