xref: /llvm-project/libc/src/math/sinh.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
153f5bfdbSAnton Rydahl //===-- Implementation header for sinh --------------------------*- C++ -*-===//
253f5bfdbSAnton Rydahl //
353f5bfdbSAnton Rydahl // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
453f5bfdbSAnton Rydahl // See https://llvm.org/LICENSE.txt for license information.
553f5bfdbSAnton Rydahl // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
653f5bfdbSAnton Rydahl //
753f5bfdbSAnton Rydahl //===----------------------------------------------------------------------===//
853f5bfdbSAnton Rydahl 
953f5bfdbSAnton Rydahl #ifndef LLVM_LIBC_SRC_MATH_SINH_H
1053f5bfdbSAnton Rydahl #define LLVM_LIBC_SRC_MATH_SINH_H
1153f5bfdbSAnton Rydahl 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
13*5ff3ff33SPetr Hosek 
14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
1553f5bfdbSAnton Rydahl 
1653f5bfdbSAnton Rydahl double sinh(double x);
1753f5bfdbSAnton Rydahl 
18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
1953f5bfdbSAnton Rydahl 
2053f5bfdbSAnton Rydahl #endif // LLVM_LIBC_SRC_MATH_SINH_H
21