blob: b3a613243e2275d0c6355e83793d187f9c800830 [file]
//===-- Implementation of remquof16 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/remquof16.h"
#include "src/__support/math/remquof16.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float16, remquof16, (float16 x, float16 y, int *exp)) {
return math::remquof16(x, y, exp);
}
} // namespace LIBC_NAMESPACE_DECL