diff options
Diffstat (limited to 'libc/src/fenv/feenableexcept.cpp')
| -rw-r--r-- | libc/src/fenv/feenableexcept.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/fenv/feenableexcept.cpp b/libc/src/fenv/feenableexcept.cpp index cf45b7f1b5f7..468a170919e6 100644 --- a/libc/src/fenv/feenableexcept.cpp +++ b/libc/src/fenv/feenableexcept.cpp @@ -9,11 +9,12 @@ #include "src/fenv/feenableexcept.h" #include "src/__support/FPUtil/FEnvImpl.h" #include "src/__support/common.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(int, feenableexcept, (int e)) { return fputil::enable_except(e); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
