HelenOS sources

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