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