#ifndef _LIBCPP_CSTDINT
#define _LIBCPP_CSTDINT
#include <__config>
#include <stdint.h>
#ifndef _LIBCPP_STDINT_H
# error <cstdint> tried including <stdint.h> but didn't find libc++'s <stdint.h> header. \
This usually means that your header search paths are not configured properly. \
The header search paths should contain the C++ Standard Library headers before \
any C Standard Library, and you are probably using compiler flags that make that \
not be the case.
#endif
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
int8_t _LIBCPP_USING_IF_EXISTS;
int16_t _LIBCPP_USING_IF_EXISTS;
int32_t _LIBCPP_USING_IF_EXISTS;
int64_t _LIBCPP_USING_IF_EXISTS;
uint8_t _LIBCPP_USING_IF_EXISTS;
uint16_t _LIBCPP_USING_IF_EXISTS;
uint32_t _LIBCPP_USING_IF_EXISTS;
uint64_t _LIBCPP_USING_IF_EXISTS;
int_least8_t _LIBCPP_USING_IF_EXISTS;
int_least16_t _LIBCPP_USING_IF_EXISTS;
int_least32_t _LIBCPP_USING_IF_EXISTS;
int_least64_t _LIBCPP_USING_IF_EXISTS;
uint_least8_t _LIBCPP_USING_IF_EXISTS;
uint_least16_t _LIBCPP_USING_IF_EXISTS;
uint_least32_t _LIBCPP_USING_IF_EXISTS;
uint_least64_t _LIBCPP_USING_IF_EXISTS;
int_fast8_t _LIBCPP_USING_IF_EXISTS;
int_fast16_t _LIBCPP_USING_IF_EXISTS;
int_fast32_t _LIBCPP_USING_IF_EXISTS;
int_fast64_t _LIBCPP_USING_IF_EXISTS;
uint_fast8_t _LIBCPP_USING_IF_EXISTS;
uint_fast16_t _LIBCPP_USING_IF_EXISTS;
uint_fast32_t _LIBCPP_USING_IF_EXISTS;
uint_fast64_t _LIBCPP_USING_IF_EXISTS;
intptr_t _LIBCPP_USING_IF_EXISTS;
uintptr_t _LIBCPP_USING_IF_EXISTS;
intmax_t _LIBCPP_USING_IF_EXISTS;
uintmax_t _LIBCPP_USING_IF_EXISTS;
_LIBCPP_END_NAMESPACE_STD
#endif