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