Remove GCC-specific argument specification.

This commit is contained in:
Bob Friesenhahn 2007-06-26 15:46:23 +00:00
parent 785843bd90
commit 62362f08b7

View File

@ -43,7 +43,7 @@
* alphabets and digits are each contiguous.
*/
unsigned long long
strtoull(const char * __restrict nptr, char ** __restrict endptr, int base)
strtoull(const char *nptr, char **endptr, int base)
{
const char *s;
unsigned long long acc;