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/stdlib/strtod.c')
-rw-r--r--newlib/libc/stdlib/strtod.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/newlib/libc/stdlib/strtod.c b/newlib/libc/stdlib/strtod.c
index 1abff4fe2..402510cdf 100644
--- a/newlib/libc/stdlib/strtod.c
+++ b/newlib/libc/stdlib/strtod.c
@@ -174,8 +174,7 @@ static const double tinytens[] = { 1e-16, 1e-32,
#ifdef Avoid_Underflow /*{*/
static double
-_DEFUN (sulp, (x, scale),
- U x,
+sulp (U x,
int scale)
{
U u;
@@ -197,8 +196,7 @@ _DEFUN (sulp, (x, scale),
#ifndef NO_HEX_FP
static void
-_DEFUN (ULtod, (L, bits, exp, k),
- __ULong *L,
+ULtod (__ULong *L,
__ULong *bits,
Long exp,
int k)
@@ -1252,8 +1250,7 @@ _strtod_l (struct _reent *ptr, const char *__restrict s00, char **__restrict se,
}
double
-_DEFUN (_strtod_r, (ptr, s00, se),
- struct _reent *ptr,
+_strtod_r (struct _reent *ptr,
const char *__restrict s00,
char **__restrict se)
{
@@ -1269,8 +1266,7 @@ strtod_l (const char *__restrict s00, char **__restrict se, locale_t loc)
}
double
-_DEFUN (strtod, (s00, se),
- const char *__restrict s00, char **__restrict se)
+strtod (const char *__restrict s00, char **__restrict se)
{
return _strtod_l (_REENT, s00, se, __get_current_locale ());
}
@@ -1290,8 +1286,7 @@ strtof_l (const char *__restrict s00, char **__restrict se, locale_t loc)
}
float
-_DEFUN (strtof, (s00, se),
- const char *__restrict s00,
+strtof (const char *__restrict s00,
char **__restrict se)
{
double val = _strtod_l (_REENT, s00, se, __get_current_locale ());