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/acosh.c | |
| parent | f20eeea657d62f2ef905627ca3a9094d33af7d40 (diff) | |
outline details from C18 annex F
Diffstat (limited to 'src/math/acosh.c')
| -rw-r--r-- | src/math/acosh.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/math/acosh.c b/src/math/acosh.c index aeb15816..f557c875 100644 --- a/src/math/acosh.c +++ b/src/math/acosh.c @@ -1,9 +1,23 @@ # define TGSOURCE "acosh.c" #include "_tgmath.h" #include <math.h> +#include "fenv.h" TYPE TGFN(acosh)(TYPE x) { + if (x == 1.0) { + return 0.0; + } + + if (x < 1.0) { + feraiseexcept(FE_INVALID); + return NAN; + } + + if (fpclassify(x) == FP_INFINITE && !signbit(x)) { + return x; + } + return x; } |
