HelenOS sources
__fcompare 87 uspace/lib/c/include/math.h int __fcompare(size_t, size_t, ...);
__fcompare 130 uspace/lib/c/include/math.h #define isgreater(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & __FCOMPARE_GREATER))
__fcompare 131 uspace/lib/c/include/math.h #define isgreaterequal(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_GREATER | __FCOMPARE_EQUAL))))
__fcompare 132 uspace/lib/c/include/math.h #define isless(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & __FCOMPARE_LESS))
__fcompare 133 uspace/lib/c/include/math.h #define islessequal(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_LESS | __FCOMPARE_EQUAL)))
__fcompare 134 uspace/lib/c/include/math.h #define islessgreater(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_LESS | __FCOMPARE_GREATER)))
__fcompare 135 uspace/lib/c/include/math.h #define isunordered(x, y) (!__fcompare(sizeof(x), sizeof(y), (x), (y)))
__fcompare 87 uspace/lib/posix/include/libc/math.h int __fcompare(size_t, size_t, ...);
__fcompare 130 uspace/lib/posix/include/libc/math.h #define isgreater(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & __FCOMPARE_GREATER))
__fcompare 131 uspace/lib/posix/include/libc/math.h #define isgreaterequal(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_GREATER | __FCOMPARE_EQUAL))))
__fcompare 132 uspace/lib/posix/include/libc/math.h #define isless(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & __FCOMPARE_LESS))
__fcompare 133 uspace/lib/posix/include/libc/math.h #define islessequal(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_LESS | __FCOMPARE_EQUAL)))
__fcompare 134 uspace/lib/posix/include/libc/math.h #define islessgreater(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_LESS | __FCOMPARE_GREATER)))
__fcompare 135 uspace/lib/posix/include/libc/math.h #define isunordered(x, y) (!__fcompare(sizeof(x), sizeof(y), (x), (y)))
HelenOS homepage, sources at GitHub