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