Deleted Added
full compact
32c32
< __FBSDID("$FreeBSD: head/tools/regression/lib/msun/test-logarithm.c 226378 2011-10-15 05:28:13Z das $");
---
> __FBSDID("$FreeBSD: head/tools/regression/lib/msun/test-logarithm.c 251241 2013-06-02 04:30:03Z das $");
44,45c44
< #define ALL_STD_EXCEPT (FE_DIVBYZERO | FE_INEXACT | FE_INVALID | \
< FE_OVERFLOW | FE_UNDERFLOW)
---
> #include "test-utils.h"
66c65
< assert(((func), fetestexcept(exceptmask) == (excepts))); \
---
> assert(((void)(func), fetestexcept(exceptmask) == (excepts))); \
85,95d83
< /*
< * Determine whether x and y are equal, with two special rules:
< * +0.0 != -0.0
< * NaN == NaN
< */
< int
< fpequal(long double x, long double y)
< {
< return ((x == y && !signbit(x) == !signbit(y)) || isnan(x) && isnan(y));
< }
<