1#ifndef __KTYPES_H__
2#define __KTYPES_H__
3
4typedef unsigned char u_char;
5typedef signed char int8_t;
6typedef unsigned char u_int8_t;
7typedef short int16_t;
8typedef unsigned short u_int16_t;
9#if TARGET_API_MAC_CARBON
10typedef long int32_t;
11typedef unsigned long u_int32_t;
12#else
13typedef int int32_t;
14typedef unsigned int u_int32_t;
15#endif
16#endif /*  __KTYPES_H__ */
17