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_isnan.c')
-rw-r--r--newlib/libm/common/sf_isnan.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libm/common/sf_isnan.c b/newlib/libm/common/sf_isnan.c
index 9c813fc24..5c611d67e 100644
--- a/newlib/libm/common/sf_isnan.c
+++ b/newlib/libm/common/sf_isnan.c
@@ -24,8 +24,7 @@
#undef isnanf
int
-_DEFUN (isnanf, (x),
- float x)
+isnanf (float x)
{
__int32_t ix;
GET_FLOAT_WORD(ix,x);
@@ -38,8 +37,7 @@ _DEFUN (isnanf, (x),
#undef isnan
int
-_DEFUN (isnan, (x),
- double x)
+isnan (double x)
{
return isnanf((float) x);
}