summaryrefslogtreecommitdiff
path: root/src/math/log10.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-03 21:25:50 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-03 21:25:50 -0500
commit06696f40afe58a231e2531c8bf6d9f0dadb92e51 (patch)
treeb146422c6326ffe3debf3163f0941d8dda0be105 /src/math/log10.c
parentf20eeea657d62f2ef905627ca3a9094d33af7d40 (diff)
outline details from C18 annex F
Diffstat (limited to 'src/math/log10.c')
-rw-r--r--src/math/log10.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/log10.c b/src/math/log10.c
index cea1d45b..e504df44 100644
--- a/src/math/log10.c
+++ b/src/math/log10.c
@@ -2,11 +2,24 @@
#include <math.h>
#include "_tgmath.h"
#include "errno.h"
+#include "fenv.h"
/** base-10 logarithm **/
TYPE TGFN(log10)(TYPE x)
{
+ switch (fpclassify(x)) {
+ case FP_ZERO: feraiseexcept(FE_INVALID); return - INFINITY;
+ case FP_INFINITE: if (!signbit(x)) { return x; } break;
+ default: break;
+ }
+
+ if (x == 1.0) {
+ return 0.0;
+ }
+
if (x < 0) {
+ feraiseexcept(FE_INVALID);
+ return NAN;
errno = EDOM; /* ARGUMENT(x) is negative */
return TGHUGE;
}