#ifndef _CSTDINT_FIX_
#define _CSTDINT_FIX_

namespace std {
#include <stdint.h>
// Some of the following may not be available in the stdint.h and 
// may need to be commented out and used as needed.

using ::int8_t;
using ::int16_t;
using ::int32_t;
using ::int64_t;
#ifdef PDT_CSTDINT_ADDITIONAL_TYPES
using ::uint8_t;
using ::uint16_t;
using ::uint32_t;
using ::uint64_t;
using ::intmax_t;
using ::uintmax_t;
using ::int_least8_t;
using ::uint_least8_t;
using ::int_least16_t;
using ::uint_least16_t;
using ::int_least64_t;
using ::uint_least64_t;
using ::int_fast8_t;
using ::uint_fast8_t;
using ::int_fast16_t;
using ::uint_fast16_t;
using ::int_fast32_t;
using ::uint_fast32_t;
using ::int_fast64_t;
using ::uint_fast64_t;
using ::intptr_t;
using ::uintptr_t;
#endif /* PDT_CSTDINT_ADDITIONAL_TYPES */
};

#endif 
