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

#ifndef _SYSTEM_BUILD
  #pragma system_include
#endif

#include <cstdint>
#include <inttypes.h>

namespace std {
  using ::int8_t; using ::int16_t;	// from <stdint.h>
  using ::int32_t; using ::int64_t;
  using ::uint8_t; using ::uint16_t;
  using ::uint32_t; using ::uint64_t;

  using ::int_least8_t; using ::int_least16_t;
  using ::int_least32_t;  using ::int_least64_t;
  using ::uint_least8_t; using ::uint_least16_t;
  using ::uint_least32_t; using ::uint_least64_t;

  using ::int_fast8_t; using ::int_fast16_t;
  using ::int_fast32_t;  using ::int_fast64_t;
  using ::uint_fast8_t; using ::uint_fast16_t;
  using ::uint_fast32_t; using ::uint_fast64_t;

  using ::intmax_t; using ::intptr_t;
  using ::uintmax_t; using ::uintptr_t;

  using ::imaxdiv_t;  // from <inttypes.h>

  #if 0
    using ::abs; using ::div;
  #endif
  using ::imaxabs; using ::imaxdiv;
  using ::strtoimax; using ::strtoumax;
  using ::wcstoimax; using ::wcstoumax;
} /* namespace std */

#endif /* _CINTTYPES_ */

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