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