summaryrefslogtreecommitdiff
path: root/libc/src/math/generic/ldexpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/ldexpl.cpp')
-rw-r--r--libc/src/math/generic/ldexpl.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/generic/ldexpl.cpp b/libc/src/math/generic/ldexpl.cpp
index 8b29009fa1aa..9e1de5c5cf4a 100644
--- a/libc/src/math/generic/ldexpl.cpp
+++ b/libc/src/math/generic/ldexpl.cpp
@@ -9,11 +9,12 @@
#include "src/math/ldexpl.h"
#include "src/__support/FPUtil/ManipulationFunctions.h"
#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
-namespace LIBC_NAMESPACE {
+namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(long double, ldexpl, (long double x, int exp)) {
return fputil::ldexp(x, exp);
}
-} // namespace LIBC_NAMESPACE
+} // namespace LIBC_NAMESPACE_DECL