/*
 *  inttypes.h Defined system types
 *
 *  Copyright by QNX Software Systems Limited 1990-1997. All rights reserved.
 */
#ifndef _INTTYPES_H_INCLUDED
#define _INTTYPES_H_INCLUDED

#ifndef __PLATFORM_H_INCLUDED
#include <sys/platform.h>
#endif

#if 1
typedef _Int8t					int8_t;
typedef _Uint8t					uint8_t;
typedef _Int16t					int16_t;
typedef _Uint16t				uint16_t;
typedef _Int32t					int32_t;
typedef _Uint32t				uint32_t;
typedef _Int64t					int64_t;
typedef _Uint64t				uint64_t;
typedef _Intptrt				intptr_t;
typedef _Uintptrt				uintptr_t;

#elif 0
typedef signed char				int8_t;
typedef unsigned char			uint8_t;
typedef short signed int		int16_t;
typedef short unsigned int		uint16_t;
typedef int						int32_t;
typedef unsigned int			uint32_t;
typedef signed char				_int8;
typedef unsigned char			_uint8;
typedef short signed int		_int16;
typedef short unsigned int		_uint16;
typedef int						_int32;
typedef unsigned int			_uint32;
typedef signed char				_Int8t;
typedef unsigned char			_Uint8t;
typedef short signed int		_Int16t;
typedef short unsigned int		_Uint16t;
typedef int						_Int32t;
typedef unsigned int			_Uint32t;
#else
#include <sys/types.h>	/* Quick kludge since types.h also defines all this stuff */
#endif
//typedef long long			int64_t;
//typedef unsigned long long		uint64_t;

#endif
