summaryrefslogtreecommitdiffstats
path: root/libm/s_fmin.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-12-22 16:09:40 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-12-22 16:09:40 +0000
commit8f526af0d9a563797ad8ba28cd305476b842e9be (patch)
tree4bcbc9be762ebe49d50a167bceb91ddbbfd61702 /libm/s_fmin.c
parentd124a091433d07a9a567c0738cf3d2df2a416c2f (diff)
downloaduClibc-alpine-8f526af0d9a563797ad8ba28cd305476b842e9be.tar.bz2
uClibc-alpine-8f526af0d9a563797ad8ba28cd305476b842e9be.tar.xz
- sync with trunk @r24492
Diffstat (limited to 'libm/s_fmin.c')
-rw-r--r--libm/s_fmin.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libm/s_fmin.c b/libm/s_fmin.c
index 4d2a0cf56..674d9a56b 100644
--- a/libm/s_fmin.c
+++ b/libm/s_fmin.c
@@ -7,13 +7,7 @@
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
- double fmin(double x, double y)
-#else
- double fmin(x,y)
- double x;
- double y;
-#endif
+double fmin(double x, double y)
{
if (__fpclassify(x) == FP_NAN)
return x;