112a1e6ddSOverMighty //===-- Implementation header for f16subf -----------------------*- C++ -*-===// 212a1e6ddSOverMighty // 312a1e6ddSOverMighty // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 412a1e6ddSOverMighty // See https://llvm.org/LICENSE.txt for license information. 512a1e6ddSOverMighty // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 612a1e6ddSOverMighty // 712a1e6ddSOverMighty //===----------------------------------------------------------------------===// 812a1e6ddSOverMighty 912a1e6ddSOverMighty #ifndef LLVM_LIBC_SRC_MATH_F16SUBF_H 1012a1e6ddSOverMighty #define LLVM_LIBC_SRC_MATH_F16SUBF_H 1112a1e6ddSOverMighty 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1312a1e6ddSOverMighty #include "src/__support/macros/properties/types.h" 1412a1e6ddSOverMighty 15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 1612a1e6ddSOverMighty 1712a1e6ddSOverMighty float16 f16subf(float x, float y); 1812a1e6ddSOverMighty 19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 2012a1e6ddSOverMighty 2112a1e6ddSOverMighty #endif // LLVM_LIBC_SRC_MATH_F16SUBF_H 22