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_isinf.c')
-rw-r--r--newlib/libm/common/sf_isinf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libm/common/sf_isinf.c b/newlib/libm/common/sf_isinf.c
index 5b57a346f..75e90c9fd 100644
--- a/newlib/libm/common/sf_isinf.c
+++ b/newlib/libm/common/sf_isinf.c
@@ -13,8 +13,7 @@
#undef isinff
int
-_DEFUN (isinff, (x),
- float x)
+isinff (float x)
{
__int32_t ix;
GET_FLOAT_WORD(ix,x);
@@ -27,8 +26,7 @@ _DEFUN (isinff, (x),
#undef isinf
int
-_DEFUN (isinf, (x),
- double x)
+isinf (double x)
{
return isinff((float) x);
}