blob: 0ed2cb569fd2ef998522771c744c1ba6c4dc4e35 [file] [log] [blame] [edit]
//===-- Implementation of ilogbf 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/ilogbf.h"
#include "src/__support/math/ilogbf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(int, ilogbf, (float x)) { return math::ilogbf(x); }
} // namespace LIBC_NAMESPACE_DECL