diff options
Diffstat (limited to 'libc/src/math/amdgpu/nextafter.cpp')
| -rw-r--r-- | libc/src/math/amdgpu/nextafter.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/amdgpu/nextafter.cpp b/libc/src/math/amdgpu/nextafter.cpp index 5c74ef165268..226b8a5a1254 100644 --- a/libc/src/math/amdgpu/nextafter.cpp +++ b/libc/src/math/amdgpu/nextafter.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(double, nextafter, (double x, double y)) { return __ocml_nextafter_f64(x, y); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
