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/libm/common/sf_nan.c')
-rw-r--r--newlib/libm/common/sf_nan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libm/common/sf_nan.c b/newlib/libm/common/sf_nan.c
index 831f3f79f..c8d7027f8 100644
--- a/newlib/libm/common/sf_nan.c
+++ b/newlib/libm/common/sf_nan.c
@@ -5,7 +5,7 @@
#include "fdlibm.h"
- float nanf(const char *unused)
+ float nanf()
{
float x;
@@ -15,9 +15,9 @@
#ifdef _DOUBLE_IS_32BITS
- double nan(const char *arg)
+ double nan()
{
- return (double) nanf(arg);
+ return (double) nanf();
}
#endif /* defined(_DOUBLE_IS_32BITS) */