Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/machine/powerpc/atoufix64.c')
-rw-r--r--newlib/libc/machine/powerpc/atoufix64.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/machine/powerpc/atoufix64.c b/newlib/libc/machine/powerpc/atoufix64.c
index e8ff7773d..cf9517e95 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);
}