diff options
Diffstat (limited to 'libc/src/math/amdgpu/scalbn.cpp')
-rw-r--r-- | libc/src/math/amdgpu/scalbn.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/src/math/amdgpu/scalbn.cpp b/libc/src/math/amdgpu/scalbn.cpp index 05bbbc6..c2a43e0 100644 --- a/libc/src/math/amdgpu/scalbn.cpp +++ b/libc/src/math/amdgpu/scalbn.cpp @@ -10,12 +10,11 @@ #include "src/__support/common.h" #include "declarations.h" -#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE_DECL { +namespace LIBC_NAMESPACE { LLVM_LIBC_FUNCTION(double, scalbn, (double x, int y)) { return __builtin_amdgcn_ldexp(x, y); } -} // namespace LIBC_NAMESPACE_DECL +} // namespace LIBC_NAMESPACE |