summaryrefslogtreecommitdiff
path: root/libc/src/math/amdgpu/remainder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/amdgpu/remainder.cpp')
-rw-r--r--libc/src/math/amdgpu/remainder.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/amdgpu/remainder.cpp b/libc/src/math/amdgpu/remainder.cpp
index 89b235f9c22a..9027204312e0 100644
--- a/libc/src/math/amdgpu/remainder.cpp
+++ b/libc/src/math/amdgpu/remainder.cpp
@@ -8,11 +8,12 @@
#include "src/math/remainder.h"
#include "src/__support/common.h"
+#include "src/__support/macros/config.h"
-namespace LIBC_NAMESPACE {
+namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(double, remainder, (double x, double y)) {
return __builtin_remainder(x, y);
}
-} // namespace LIBC_NAMESPACE
+} // namespace LIBC_NAMESPACE_DECL