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