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