diff options
Diffstat (limited to 'newlib/libc/machine/powerpc/strtoufix64.c')
-rw-r--r-- | newlib/libc/machine/powerpc/strtoufix64.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/machine/powerpc/strtoufix64.c b/newlib/libc/machine/powerpc/strtoufix64.c index 539f953..5ef5384 100644 --- a/newlib/libc/machine/powerpc/strtoufix64.c +++ b/newlib/libc/machine/powerpc/strtoufix64.c @@ -14,8 +14,8 @@ */ __uint64_t _DEFUN (_strtoufix64_r, (rptr, nptr, endptr), - struct _reent *rptr _AND - _CONST char *nptr _AND + struct _reent *rptr, + _CONST char *nptr, char **endptr) { union long_double_union ldbl; @@ -105,7 +105,7 @@ _DEFUN (_strtoufix64_r, (rptr, nptr, endptr), __uint64_t _DEFUN (strtoufix64, (s, ptr, base), - _CONST char *s _AND + _CONST char *s, char **ptr) { return _strtoufix64_r (_REENT, s, ptr); |