Deleted Added
full compact
32c32
< __FBSDID("$FreeBSD: head/tools/regression/lib/msun/test-fmaxmin.c 216222 2010-12-06 00:02:49Z das $");
---
> __FBSDID("$FreeBSD: head/tools/regression/lib/msun/test-fmaxmin.c 251241 2013-06-02 04:30:03Z das $");
39,40c39
< #define ALL_STD_EXCEPT (FE_DIVBYZERO | FE_INEXACT | FE_INVALID | \
< FE_OVERFLOW | FE_UNDERFLOW)
---
> #include "test-utils.h"
45,57d43
< * Test for equality with two special rules:
< * fpequal(NaN, NaN) is true
< * fpequal(+0.0, -0.0) is false
< */
< static inline int
< fpequal(long double x, long double y)
< {
<
< return ((x == y && !signbit(x) == !signbit(y))
< || (isnan(x) && isnan(y)));
< }
<
< /*