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