1// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10export namespace std {
11  // signed
12  using std::int8_t _LIBCPP_USING_IF_EXISTS;
13  using std::int16_t _LIBCPP_USING_IF_EXISTS;
14  using std::int32_t _LIBCPP_USING_IF_EXISTS;
15  using std::int64_t _LIBCPP_USING_IF_EXISTS;
16
17  using std::int_fast16_t;
18  using std::int_fast32_t;
19  using std::int_fast64_t;
20  using std::int_fast8_t;
21
22  using std::int_least16_t;
23  using std::int_least32_t;
24  using std::int_least64_t;
25  using std::int_least8_t;
26
27  using std::intmax_t;
28
29  using std::intptr_t _LIBCPP_USING_IF_EXISTS;
30
31  // unsigned
32  using std::uint8_t _LIBCPP_USING_IF_EXISTS;
33  using std::uint16_t _LIBCPP_USING_IF_EXISTS;
34  using std::uint32_t _LIBCPP_USING_IF_EXISTS;
35  using std::uint64_t _LIBCPP_USING_IF_EXISTS;
36
37  using std::uint_fast16_t;
38  using std::uint_fast32_t;
39  using std::uint_fast64_t;
40  using std::uint_fast8_t;
41
42  using std::uint_least16_t;
43  using std::uint_least32_t;
44  using std::uint_least64_t;
45  using std::uint_least8_t;
46
47  using std::uintmax_t;
48
49  using std::uintptr_t _LIBCPP_USING_IF_EXISTS;
50} // namespace std
51