xref: /llvm-project/libc/src/math/llrintf128.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
160d7bf3dSlntue //===-- Implementation header for llrintf128 --------------------*- C++ -*-===//
260d7bf3dSlntue //
360d7bf3dSlntue // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
460d7bf3dSlntue // See https://llvm.org/LICENSE.txt for license information.
560d7bf3dSlntue // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
660d7bf3dSlntue //
760d7bf3dSlntue //===----------------------------------------------------------------------===//
860d7bf3dSlntue 
960d7bf3dSlntue #ifndef LLVM_LIBC_SRC_MATH_LLRINTF128_H
1060d7bf3dSlntue #define LLVM_LIBC_SRC_MATH_LLRINTF128_H
1160d7bf3dSlntue 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
1360d7bf3dSlntue #include "src/__support/macros/properties/types.h"
1460d7bf3dSlntue 
15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
1660d7bf3dSlntue 
1760d7bf3dSlntue long long llrintf128(float128 x);
1860d7bf3dSlntue 
19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
2060d7bf3dSlntue 
2160d7bf3dSlntue #endif // LLVM_LIBC_SRC_MATH_LLRINTF128_H
22