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