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