blob: 94eeba9eaf705e38beaf93a44278b3a16a375e94 [file]
//===-- Implementation of copysignf function ------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "src/math/copysignf.h"
#include "src/__support/math/copysignf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, copysignf, (float x, float y)) {
return math::copysignf(x, y);
}
} // namespace LIBC_NAMESPACE_DECL