Path: blob/main/contrib/llvm-project/libc/shared/math/frexpf.h
213766 views
//===-- Shared frexpf function ------------------------------------*- C++1//-*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//89#ifndef LLVM_LIBC_SHARED_MATH_FREXPF_H10#define LLVM_LIBC_SHARED_MATH_FREXPF_H1112#include "shared/libc_common.h"13#include "src/__support/math/frexpf.h"1415namespace LIBC_NAMESPACE_DECL {16namespace shared {1718using math::frexpf;1920} // namespace shared21} // namespace LIBC_NAMESPACE_DECL2223#endif // LLVM_LIBC_SHARED_MATH_FREXPF_H242526