summaryrefslogtreecommitdiff
path: root/libc/src/math/amdgpu/frexpf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/amdgpu/frexpf.cpp')
-rw-r--r--libc/src/math/amdgpu/frexpf.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/amdgpu/frexpf.cpp b/libc/src/math/amdgpu/frexpf.cpp
index d870bf3095b2..2799e542efae 100644
--- a/libc/src/math/amdgpu/frexpf.cpp
+++ b/libc/src/math/amdgpu/frexpf.cpp
@@ -10,11 +10,12 @@
#include "src/__support/common.h"
#include "declarations.h"
+#include "src/__support/macros/config.h"
-namespace LIBC_NAMESPACE {
+namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, frexpf, (float x, int *p)) {
return __builtin_frexpf(x, p);
}
-} // namespace LIBC_NAMESPACE
+} // namespace LIBC_NAMESPACE_DECL