1*6c4267fbSMichael Jones //===-- Floating point number utils -----------------------------*- C++ -*-===// 2*6c4267fbSMichael Jones // 3*6c4267fbSMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*6c4267fbSMichael Jones // See https://llvm.org/LICENSE.txt for license information. 5*6c4267fbSMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*6c4267fbSMichael Jones // 7*6c4267fbSMichael Jones //===----------------------------------------------------------------------===// 8*6c4267fbSMichael Jones 9*6c4267fbSMichael Jones #ifndef LLVM_LIBC_SHARED_FP_BITS_H 10*6c4267fbSMichael Jones #define LLVM_LIBC_SHARED_FP_BITS_H 11*6c4267fbSMichael Jones 12*6c4267fbSMichael Jones #include "src/__support/FPUtil/FPBits.h" 13*6c4267fbSMichael Jones 14*6c4267fbSMichael Jones namespace LIBC_NAMESPACE_DECL { 15*6c4267fbSMichael Jones namespace shared { 16*6c4267fbSMichael Jones 17*6c4267fbSMichael Jones using fputil::FPBits; 18*6c4267fbSMichael Jones 19*6c4267fbSMichael Jones } // namespace shared 20*6c4267fbSMichael Jones } // namespace LIBC_NAMESPACE_DECL 21*6c4267fbSMichael Jones 22*6c4267fbSMichael Jones #endif // LLVM_LIBC_SHARED_FP_BITS_H 23