Commit 265b1bae by Richard Stallman

(REAL_VALUES_LESS): True if return value of ereal_cmp is -1.

From-SVN: r4402
parent 66b6d60b
...@@ -98,7 +98,7 @@ REAL_VALUE_TYPE ereal_negate (), ereal_truncate (); ...@@ -98,7 +98,7 @@ REAL_VALUE_TYPE ereal_negate (), ereal_truncate ();
#define REAL_VALUES_EQUAL(x, y) (ereal_cmp ((x), (y)) == 0) #define REAL_VALUES_EQUAL(x, y) (ereal_cmp ((x), (y)) == 0)
/* true if x < y : */ /* true if x < y : */
#define REAL_VALUES_LESS(x, y) (ereal_cmp ((x), (y)) < 0) #define REAL_VALUES_LESS(x, y) (ereal_cmp ((x), (y)) == -1)
#define REAL_VALUE_LDEXP(x, n) ereal_ldexp (x, n) #define REAL_VALUE_LDEXP(x, n) ereal_ldexp (x, n)
/* These return REAL_VALUE_TYPE: */ /* These return REAL_VALUE_TYPE: */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment