diff options
Diffstat (limited to 'libc/src/math/amdgpu/sqrtf.cpp')
| -rw-r--r-- | libc/src/math/amdgpu/sqrtf.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/amdgpu/sqrtf.cpp b/libc/src/math/amdgpu/sqrtf.cpp index e17f942a4d5f..851922c31645 100644 --- a/libc/src/math/amdgpu/sqrtf.cpp +++ b/libc/src/math/amdgpu/sqrtf.cpp @@ -8,9 +8,10 @@ #include "src/math/sqrtf.h" #include "src/__support/common.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(float, sqrtf, (float x)) { return __builtin_sqrtf(x); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
