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/fmod.c | |
parent | f20eeea657d62f2ef905627ca3a9094d33af7d40 (diff) |
outline details from C18 annex F
Diffstat (limited to 'src/math/fmod.c')
-rw-r--r-- | src/math/fmod.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/math/fmod.c b/src/math/fmod.c index d8254d40..4370830f 100644 --- a/src/math/fmod.c +++ b/src/math/fmod.c @@ -2,10 +2,27 @@ #include <math.h> #include "_tgmath.h" #include "errno.h" +#include "fenv.h" /** floating-point remainder **/ TYPE TGFN(fmod)(TYPE x, TYPE y) { + int classx = fpclassify(x); + int classy = fpclassify(y); + + if (classx == FP_ZERO && classy != FP_ZERO) { + return x; + } + + if (classx == FP_INFINITE && classy == FP_ZERO) { + feraiseexcept(FE_INVALID); + return NAN; + } + + if (classx != FP_INFINITE && classy == FP_INFINITE) { + return x; + } + if (y == 0) { return 0; } |