xref: /llvm-project/libc/src/math/sqrtf128.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
1777eb356Sfelixh5678 //===-- Implementation header for sqrtf128 ----------------------*- C++ -*-===//
2777eb356Sfelixh5678 //
3777eb356Sfelixh5678 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4777eb356Sfelixh5678 // See https://llvm.org/LICENSE.txt for license information.
5777eb356Sfelixh5678 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6777eb356Sfelixh5678 //
7777eb356Sfelixh5678 //===----------------------------------------------------------------------===//
8777eb356Sfelixh5678 
9777eb356Sfelixh5678 #ifndef LLVM_LIBC_SRC_MATH_SQRTF128_H
10777eb356Sfelixh5678 #define LLVM_LIBC_SRC_MATH_SQRTF128_H
11777eb356Sfelixh5678 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
1353bd411eSGuillaume Chatelet #include "src/__support/macros/properties/types.h"
14777eb356Sfelixh5678 
15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
16777eb356Sfelixh5678 
17777eb356Sfelixh5678 float128 sqrtf128(float128 x);
18777eb356Sfelixh5678 
19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
20777eb356Sfelixh5678 
21777eb356Sfelixh5678 #endif // LLVM_LIBC_SRC_MATH_SQRTF128_H
22