diff options
Diffstat (limited to 'common/types.h')
-rw-r--r-- | common/types.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/types.h b/common/types.h new file mode 100644 index 0000000..4c911ed --- /dev/null +++ b/common/types.h @@ -0,0 +1,15 @@ +#ifndef _TYPES_H_ +#define _TYPES_H_ + +#include <stdint.h> +#include <stdbool.h> + +typedef unsigned char uchar; +typedef unsigned short ushort; +typedef unsigned int uint; +typedef unsigned long ulong; + +#define NULL 0 + +#endif + |