diff options
Diffstat (limited to 'libc/src/math/generic/fmaxf16.cpp')
| -rw-r--r-- | libc/src/math/generic/fmaxf16.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/math/generic/fmaxf16.cpp b/libc/src/math/generic/fmaxf16.cpp index c317aef3cb3b..02c2bd80149f 100644 --- a/libc/src/math/generic/fmaxf16.cpp +++ b/libc/src/math/generic/fmaxf16.cpp @@ -9,11 +9,12 @@ #include "src/math/fmaxf16.h" #include "src/__support/FPUtil/BasicOperations.h" #include "src/__support/common.h" +#include "src/__support/macros/config.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(float16, fmaxf16, (float16 x, float16 y)) { return fputil::fmax(x, y); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
