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