2 //===--------------------------- cstdint ----------------------------------===//
4 // The LLVM Compiler Infrastructure
6 // This file is dual licensed under the MIT and the University of Illinois Open
7 // Source Licenses. See LICENSE.TXT for details.
9 //===----------------------------------------------------------------------===//
11 #ifndef _LIBCPP_CSTDINT
12 #define _LIBCPP_CSTDINT
147 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
148 #pragma GCC system_header
151 _LIBCPP_BEGIN_NAMESPACE_STD
164 using::int_least16_t;
165 using::int_least32_t;
166 using::int_least64_t;
168 using::uint_least8_t;
169 using::uint_least16_t;
170 using::uint_least32_t;
171 using::uint_least64_t;
179 using::uint_fast16_t;
180 using::uint_fast32_t;
181 using::uint_fast64_t;
189 _LIBCPP_END_NAMESPACE_STD
191 #endif // _LIBCPP_CSTDINT