Commit d70dd610 authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Use floating point comparison builtins also in MSVC mode.

parent 5cf55893
......@@ -351,7 +351,7 @@ static inline int __signbit(double x)
#define _FP_EQ 2
#define _FP_GT 4
#ifdef __GNUC__
#if defined(__GNUC__) || defined(__clang__)
# define isgreater(x, y) __builtin_isgreater(x, y)
# define isgreaterequal(x, y) __builtin_isgreaterequal(x, y)
# define isless(x, y) __builtin_isless(x, y)
......
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