diff --git a/include/types.h b/include/types.h new file mode 100644 index 0000000..e44c7ec --- /dev/null +++ b/include/types.h @@ -0,0 +1,11 @@ +#ifndef RIVOS_TYPES_H +#define RIVOS_TYPES_H + +/** + * Define our standard types + */ +typedef unsigned char u8; +typedef unsigned int u32; +typedef u32 size_t; + +#endif