feat(types): move types to header file

This commit is contained in:
2026-01-26 01:39:16 +01:00
parent 6db84bf318
commit b3db8e7e59

11
include/types.h Normal file
View File

@@ -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