diff options
Diffstat (limited to 'src/fenv/_fenv.h')
-rw-r--r-- | src/fenv/_fenv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fenv/_fenv.h b/src/fenv/_fenv.h index 718bd136..eaaa7d0c 100644 --- a/src/fenv/_fenv.h +++ b/src/fenv/_fenv.h @@ -8,7 +8,7 @@ #else #define ASSERT_VALID_EXCEPTION_MASK(_n) do { \ if (((_n) & ~(FE_ALL_EXCEPT)) != 0) { \ - __undefined("In call to %s(), exception mask 0x(%jx) is not valid", __func__, (uintmax_t)(_n)); \ + UNDEFINED("In call to %s(), exception mask 0x(%jx) is not valid", __func__, (uintmax_t)(_n)); \ } \ } while (0) |