// cstdint standard header -*-c++-*-
// Copyright 2009-2017 IAR Systems AB.
#ifndef _CSTDINT_
#define _CSTDINT_

#ifndef _SYSTEM_BUILD
  #pragma system_include
#endif

#include <stdint.h>

namespace std {
  using ::int8_t; using ::int16_t;
  using ::int32_t;
  using ::uint8_t; using ::uint16_t;
  using ::uint32_t;
  #ifdef __INT64_T_TYPE__
    using ::int64_t; using ::uint64_t;
  #endif

  using ::int_least8_t; using ::int_least16_t;
  using ::int_least32_t;
  using ::uint_least8_t; using ::uint_least16_t;
  using ::uint_least32_t;
  #ifdef __INT_LEAST64_T_TYPE__
    using ::int_least64_t; using ::uint_least64_t;
  #endif

  using ::int_fast8_t; using ::int_fast16_t;
  using ::int_fast32_t;
  using ::uint_fast8_t; using ::uint_fast16_t;
  using ::uint_fast32_t;
  #ifdef __INT_FAST64_T_TYPE__
    using ::int_fast64_t; using ::uint_fast64_t;
  #endif

  using ::intmax_t; using ::intptr_t;
  using ::uintmax_t; using ::uintptr_t;
} /* namespace std */

#endif /* _CSTDINT_ */

/*
 * Copyright (c) by P.J. Plauger. All rights reserved.
 * Consult your license regarding permissions and restrictions.
V6.50:0576 */
