
#ifndef _INT_FAST_H_
#define _INT_FAST_H_
/* 7.18.1.3 Fastest minimum-width integer types */

typedef	__signed char		   int_fast8_t;
typedef	unsigned char		  uint_fast8_t;
typedef	int			  int_fast16_t;
typedef	unsigned int		 uint_fast16_t;
typedef	int			  int_fast32_t;
typedef	unsigned int		 uint_fast32_t;
#ifdef __COMPILER_INT64__
typedef	__COMPILER_INT64__	  int_fast64_t;
typedef	__COMPILER_UINT64__	 uint_fast64_t;
#else
/* LONGLONG */
typedef	long long int		  int_fast64_t;
/* LONGLONG */
typedef	unsigned long long int	 uint_fast64_t;
#endif

#endif /* !_INT_FAST_H_ */
