xref: /llvm-project/libc/src/math/f16addl.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
14e567242SOverMighty //===-- Implementation header for f16addl -----------------------*- C++ -*-===//
24e567242SOverMighty //
34e567242SOverMighty // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44e567242SOverMighty // See https://llvm.org/LICENSE.txt for license information.
54e567242SOverMighty // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
64e567242SOverMighty //
74e567242SOverMighty //===----------------------------------------------------------------------===//
84e567242SOverMighty 
94e567242SOverMighty #ifndef LLVM_LIBC_SRC_MATH_F16ADDL_H
104e567242SOverMighty #define LLVM_LIBC_SRC_MATH_F16ADDL_H
114e567242SOverMighty 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
134e567242SOverMighty #include "src/__support/macros/properties/types.h"
144e567242SOverMighty 
15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
164e567242SOverMighty 
174e567242SOverMighty float16 f16addl(long double x, long double y);
184e567242SOverMighty 
19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
204e567242SOverMighty 
214e567242SOverMighty #endif // LLVM_LIBC_SRC_MATH_F16ADDL_H
22