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