1637c3702Slntue //===-- Implementation header for frexpf128 ---------------------*- C++ -*-===// 2637c3702Slntue // 3637c3702Slntue // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4637c3702Slntue // See https://llvm.org/LICENSE.txt for license information. 5637c3702Slntue // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6637c3702Slntue // 7637c3702Slntue //===----------------------------------------------------------------------===// 8637c3702Slntue 9637c3702Slntue #ifndef LLVM_LIBC_SRC_MATH_FREXPF128_H 10637c3702Slntue #define LLVM_LIBC_SRC_MATH_FREXPF128_H 11637c3702Slntue 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1353bd411eSGuillaume Chatelet #include "src/__support/macros/properties/types.h" 14637c3702Slntue 15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 16637c3702Slntue 17637c3702Slntue float128 frexpf128(float128 x, int *exp); 18637c3702Slntue 19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 20637c3702Slntue 21637c3702Slntue #endif // LLVM_LIBC_SRC_MATH_FREXPF128_H 22