HelenOS sources
__FCOMPARE_LESS 128 uspace/lib/c/include/math.h #define isless(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & __FCOMPARE_LESS))
__FCOMPARE_LESS 129 uspace/lib/c/include/math.h #define islessequal(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_LESS | __FCOMPARE_EQUAL)))
__FCOMPARE_LESS 130 uspace/lib/c/include/math.h #define islessgreater(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_LESS | __FCOMPARE_GREATER)))
__FCOMPARE_LESS 77 uspace/lib/math/generic/__fcompare.c return __FCOMPARE_LESS;
__FCOMPARE_LESS 128 uspace/lib/posix/include/libc/math.h #define isless(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & __FCOMPARE_LESS))
__FCOMPARE_LESS 129 uspace/lib/posix/include/libc/math.h #define islessequal(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_LESS | __FCOMPARE_EQUAL)))
__FCOMPARE_LESS 130 uspace/lib/posix/include/libc/math.h #define islessgreater(x, y) (!!(__fcompare(sizeof(x), sizeof(y), (x), (y)) & (__FCOMPARE_LESS | __FCOMPARE_GREATER)))
HelenOS homepage, sources at GitHub