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