diff options
Diffstat (limited to 'libm/s_fmin.c')
| -rw-r--r-- | libm/s_fmin.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libm/s_fmin.c b/libm/s_fmin.c new file mode 100644 index 000000000..a549678ee --- /dev/null +++ b/libm/s_fmin.c @@ -0,0 +1,19 @@ +/* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved. + * + * Permission to use, copy, modify, and distribute this software + * is freely granted, provided that this notice is preserved. + */ + +#include "math.h" +#include "math_private.h" + +double fmin(double x, double y) +{ + if (isnan(x)) + return y; + if (isnan(y)) + return x; + + return x < y ? x : y; +} +libm_hidden_def(fmin) |
