16ba9d298Slntue //===-- Implementation header for truncf128 ---------------------*- C++ -*-===// 26ba9d298Slntue // 36ba9d298Slntue // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 46ba9d298Slntue // See https://llvm.org/LICENSE.txt for license information. 56ba9d298Slntue // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 66ba9d298Slntue // 76ba9d298Slntue //===----------------------------------------------------------------------===// 86ba9d298Slntue 96ba9d298Slntue #ifndef LLVM_LIBC_SRC_MATH_TRUNCF128_H 106ba9d298Slntue #define LLVM_LIBC_SRC_MATH_TRUNCF128_H 116ba9d298Slntue 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1353bd411eSGuillaume Chatelet #include "src/__support/macros/properties/types.h" 146ba9d298Slntue 15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 166ba9d298Slntue 176ba9d298Slntue float128 truncf128(float128 x); 186ba9d298Slntue 19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 206ba9d298Slntue 216ba9d298Slntue #endif // LLVM_LIBC_SRC_MATH_TRUNCF128_H 22