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