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