diff options
Diffstat (limited to 'libc/src/math/generic/llrint.cpp')
| -rw-r--r-- | libc/src/math/generic/llrint.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/generic/llrint.cpp b/libc/src/math/generic/llrint.cpp index 87755e83fece..f6e8cab93ec3 100644 --- a/libc/src/math/generic/llrint.cpp +++ b/libc/src/math/generic/llrint.cpp @@ -9,8 +9,9 @@ #include "src/math/llrint.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, llrint, (double x)) { return fputil::round_to_signed_integer_using_current_rounding_mode<double, @@ -18,4 +19,4 @@ LLVM_LIBC_FUNCTION(long long, llrint, (double x)) { x); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
