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