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/atosfix64.c')
-rw-r--r--newlib/libc/machine/powerpc/atosfix64.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/machine/powerpc/atosfix64.c b/newlib/libc/machine/powerpc/atosfix64.c
index cfc421a3a..5340b1ee2 100644
--- a/newlib/libc/machine/powerpc/atosfix64.c
+++ b/newlib/libc/machine/powerpc/atosfix64.c
@@ -8,8 +8,7 @@
#include <_ansi.h>
__int64_t
-_DEFUN (_atosfix64_r, (reent, s),
- struct _reent *reent,
+_atosfix64_r (struct _reent *reent,
const char *s)
{
return _strtosfix64_r (reent, s, NULL);
@@ -17,8 +16,7 @@ _DEFUN (_atosfix64_r, (reent, s),
#ifndef _REENT_ONLY
__int64_t
-_DEFUN (atosfix64, (s),
- const char *s)
+atosfix64 (const char *s)
{
return strtosfix64 (s, NULL);
}