2010-02-26 11:43:19 +00:00
|
|
|
#pragma once
|
2005-10-19 21:22:28 +00:00
|
|
|
|
|
|
|
typedef signed char int8_t;
|
|
|
|
typedef unsigned char u_int8_t;
|
|
|
|
typedef short int16_t;
|
|
|
|
typedef unsigned short u_int16_t;
|
|
|
|
typedef int int32_t;
|
|
|
|
typedef unsigned int u_int32_t;
|
|
|
|
|
|
|
|
typedef char *caddr_t;
|