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