- t2ex
- bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
101: ((x) > (y) || (y) > (x)))
102: #define isunordered(x, y) (isnan(x) || isnan(y))
103: #endif /* __ISO_C_VISIBLE >= 1999 */
- bsd_source/t2ex/network/net/include/netbsd/math.h - 12.8KB - 488 lines
354:
355: #define isunordered(x, y) (isnan(x) || isnan(y))
356: #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
- t2ex_source/include/t2ex/math.h - 12.7KB - 323 lines
86: #define islessgreater(x, y) __builtin_islessgreater((x), (y))
87: #define isunordered(x, y) __builtin_isunordered((x), (y))
88: