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