Path: blob/main/system/lib/llvm-libc/shared/math/frexpf16.h
6175 views
//===-- Shared frexpf16 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_FREXPF16_H9#define LLVM_LIBC_SHARED_MATH_FREXPF16_H1011#include "include/llvm-libc-macros/float16-macros.h"12#include "shared/libc_common.h"1314#ifdef LIBC_TYPES_HAS_FLOAT161516#include "src/__support/math/frexpf16.h"1718namespace LIBC_NAMESPACE_DECL {19namespace shared {2021using math::frexpf16;2223} // namespace shared24} // namespace LIBC_NAMESPACE_DECL2526#endif // LIBC_TYPES_HAS_FLOAT162728#endif // LLVM_LIBC_SHARED_MATH_FREXPF16_H293031