diff options
Diffstat (limited to 'newlib/libc/machine/powerpc/atoufix64.c')
-rw-r--r-- | newlib/libc/machine/powerpc/atoufix64.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/machine/powerpc/atoufix64.c b/newlib/libc/machine/powerpc/atoufix64.c index e8ff777..cf9517e 100644 --- a/newlib/libc/machine/powerpc/atoufix64.c +++ b/newlib/libc/machine/powerpc/atoufix64.c @@ -8,8 +8,7 @@ #include <_ansi.h> __uint64_t -_DEFUN (_atoufix64_r, (reent, s), - struct _reent *reent, +_atoufix64_r (struct _reent *reent, const char *s) { return _strtoufix64_r (reent, s, NULL); @@ -17,8 +16,7 @@ _DEFUN (_atoufix64_r, (reent, s), #ifndef _REENT_ONLY __uint64_t -_DEFUN (atoufix64, (s), - const char *s) +atoufix64 (const char *s) { return strtoufix64 (s, NULL); } |