diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-03 21:25:50 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-03 21:25:50 -0500 |
commit | 06696f40afe58a231e2531c8bf6d9f0dadb92e51 (patch) | |
tree | b146422c6326ffe3debf3163f0941d8dda0be105 /src/math/fmax.c | |
parent | f20eeea657d62f2ef905627ca3a9094d33af7d40 (diff) |
outline details from C18 annex F
Diffstat (limited to 'src/math/fmax.c')
-rw-r--r-- | src/math/fmax.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/math/fmax.c b/src/math/fmax.c index dc354ca3..7e5d8a61 100644 --- a/src/math/fmax.c +++ b/src/math/fmax.c @@ -4,7 +4,13 @@ TYPE TGFN(fmax)(TYPE x, TYPE y) { - return x - y; + if (isnan(x) && !isnan(y)) { + return y; + } else if (!isnan(x) && isnan(y)) { + return x; + } + + return x > y ? x : y; } /* |