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