diff options
Diffstat (limited to 'libc/src/math/generic/asinf.cpp')
| -rw-r--r-- | libc/src/math/generic/asinf.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/generic/asinf.cpp b/libc/src/math/generic/asinf.cpp index c4afca493a71..d6acc3a1692b 100644 --- a/libc/src/math/generic/asinf.cpp +++ b/libc/src/math/generic/asinf.cpp @@ -13,6 +13,7 @@ #include "src/__support/FPUtil/except_value_utils.h" #include "src/__support/FPUtil/multiply_add.h" #include "src/__support/FPUtil/sqrt.h" +#include "src/__support/macros/config.h" #include "src/__support/macros/optimization.h" // LIBC_UNLIKELY #include "src/__support/macros/properties/cpu_features.h" // LIBC_TARGET_CPU_HAS_FMA @@ -20,7 +21,7 @@ #include "inv_trigf_utils.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { static constexpr size_t N_EXCEPTS = 2; @@ -152,4 +153,4 @@ LLVM_LIBC_FUNCTION(float, asinf, (float x)) { return static_cast<float>(fputil::multiply_add(c3, r, c2)); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
