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