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