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