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