blob: 6381760a437cbe84f0b74dbc0179228c07b2c735 [file] [log] [blame] [edit]
//===-- Single-precision log10(x) 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/log10f.h"
#include "src/__support/math/log10f.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, log10f, (float x)) { return math::log10f(x); }
} // namespace LIBC_NAMESPACE_DECL