diff options
Diffstat (limited to 'libc/src/math/generic/fromfpl.cpp')
| -rw-r--r-- | libc/src/math/generic/fromfpl.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/generic/fromfpl.cpp b/libc/src/math/generic/fromfpl.cpp index ee3abeaf98f8..ab1cbefae1ef 100644 --- a/libc/src/math/generic/fromfpl.cpp +++ b/libc/src/math/generic/fromfpl.cpp @@ -9,12 +9,13 @@ #include "src/math/fromfpl.h" #include "src/__support/FPUtil/NearestIntegerOperations.h" #include "src/__support/common.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(long double, fromfpl, (long double x, int rnd, unsigned int width)) { return fputil::fromfp</*IsSigned=*/true>(x, rnd, width); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
