Path: blob/main/system/lib/llvm-libc/shared/math/ldexpf16.h
6175 views
//===-- Shared ldexpf16 function --------------------------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_SHARED_MATH_LDEXPF16_H9#define LLVM_LIBC_SHARED_MATH_LDEXPF16_H1011#include "include/llvm-libc-macros/float16-macros.h"1213#ifdef LIBC_TYPES_HAS_FLOAT161415#include "shared/libc_common.h"16#include "src/__support/math/ldexpf16.h"1718namespace LIBC_NAMESPACE_DECL {1920namespace shared {2122using math::ldexpf16;2324} // namespace shared2526} // namespace LIBC_NAMESPACE_DECL2728#endif // LIBC_TYPES_HAS_FLOAT162930#endif // LLVM_LIBC_SHARED_MATH_LDEXPF16_H313233