1 /* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved.
3 * Permission to use, copy, modify, and distribute this software
4 * is freely granted, provided that this notice is preserved.
9 #ifndef _DOUBLE_IS_32BITS
12 double fmin(double x
, double y
)
19 if (__fpclassifyd(x
) == FP_NAN
)
21 if (__fpclassifyd(y
) == FP_NAN
)
27 #endif /* _DOUBLE_IS_32BITS */