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