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