diff options
Diffstat (limited to 'src/fenv/fegetround.c')
-rw-r--r-- | src/fenv/fegetround.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fenv/fegetround.c b/src/fenv/fegetround.c index 03389e63..2aa18464 100644 --- a/src/fenv/fegetround.c +++ b/src/fenv/fegetround.c @@ -1,5 +1,5 @@ #include <fenv.h> -#include "_safety.h" +#include "_fenv.h" int fegetround(void) { @@ -7,6 +7,8 @@ int fegetround(void) return 0; } +CHECK_0(int, 0, fegetround) + /* The fegetround function gets the current rounding direction. */ |