diff options
Diffstat (limited to 'newlib/libc/stdlib/strtoll_r.c')
-rw-r--r-- | newlib/libc/stdlib/strtoll_r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/strtoll_r.c b/newlib/libc/stdlib/strtoll_r.c index 6181507a3..b814f68be 100644 --- a/newlib/libc/stdlib/strtoll_r.c +++ b/newlib/libc/stdlib/strtoll_r.c @@ -2,7 +2,7 @@ This code is based on strtoul.c which has the following copyright. It is used to convert a string into a signed long long. - long long __strtoll_r (struct _reent *rptr, const char *s, + long long _strtoll_r (struct _reent *rptr, const char *s, char **ptr, int base); */ @@ -56,7 +56,7 @@ * alphabets and digits are each contiguous. */ long long -_DEFUN (__strtoll_r, (rptr, nptr, endptr, base), +_DEFUN (_strtoll_r, (rptr, nptr, endptr, base), struct _reent *rptr _AND _CONST char *nptr _AND char **endptr _AND |