xref: /llvm-project/libc/src/math/log10f16.h (revision 69d3a44eded0b0792c8d69e830579f84b8e81eeb)
1*69d3a44eSOverMighty //===-- Implementation header for log10f16 ----------------------*- C++ -*-===//
2*69d3a44eSOverMighty //
3*69d3a44eSOverMighty // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*69d3a44eSOverMighty // See https://llvm.org/LICENSE.txt for license information.
5*69d3a44eSOverMighty // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*69d3a44eSOverMighty //
7*69d3a44eSOverMighty //===----------------------------------------------------------------------===//
8*69d3a44eSOverMighty 
9*69d3a44eSOverMighty #ifndef LLVM_LIBC_SRC_MATH_LOG10F16_H
10*69d3a44eSOverMighty #define LLVM_LIBC_SRC_MATH_LOG10F16_H
11*69d3a44eSOverMighty 
12*69d3a44eSOverMighty #include "src/__support/macros/config.h"
13*69d3a44eSOverMighty #include "src/__support/macros/properties/types.h"
14*69d3a44eSOverMighty 
15*69d3a44eSOverMighty namespace LIBC_NAMESPACE_DECL {
16*69d3a44eSOverMighty 
17*69d3a44eSOverMighty float16 log10f16(float16 x);
18*69d3a44eSOverMighty 
19*69d3a44eSOverMighty } // namespace LIBC_NAMESPACE_DECL
20*69d3a44eSOverMighty 
21*69d3a44eSOverMighty #endif // LLVM_LIBC_SRC_MATH_LOG10F16_H
22