diff options
Diffstat (limited to 'src/fenv/feclearexcept.c')
| -rw-r--r-- | src/fenv/feclearexcept.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/fenv/feclearexcept.c b/src/fenv/feclearexcept.c new file mode 100644 index 00000000..646b4669 --- /dev/null +++ b/src/fenv/feclearexcept.c @@ -0,0 +1,16 @@ +#include <fenv.h> + +int feclearexcept(int excepts) +{ + return excepts; +} + +/*d +The feclearexcept function clears the supported floating-point exceptions +represented by its argument. +d*/ + +/* +STDC(199901) +LINK(m) +*/ |
