diff options
Diffstat (limited to 'libc/src/math/generic/ldexp.cpp')
| -rw-r--r-- | libc/src/math/generic/ldexp.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/generic/ldexp.cpp b/libc/src/math/generic/ldexp.cpp index 18aae0903640..93ed328671f2 100644 --- a/libc/src/math/generic/ldexp.cpp +++ b/libc/src/math/generic/ldexp.cpp @@ -9,11 +9,12 @@ #include "src/math/ldexp.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(double, ldexp, (double x, int exp)) { return fputil::ldexp(x, exp); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
