7.12.14.2 The isgreaterequal macro

Synopsis

1

#include <math.h>
int isgreaterequal(real-floating x, real-floating y);

Description

2

The isgreaterequal macro determines whether its first argument is greater than or equal to its second argument. The value of isgreaterequal(x, y) is always equal to (x) >= (y); however, unlike (x) >= (y), isgreaterequal(x, y) does not raise the “invalid” floating-point exception when x and y are unordered.

Returns

3

The isgreaterequal macro returns the value of (x) >= (y).