Files
rivos/include/types.h
2026-01-26 15:21:52 +01:00

18 lines
279 B
C

#ifndef RIVOS_TYPES_H
#define RIVOS_TYPES_H
/**
* Define our standard types
*/
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long long u64;
typedef u32 size_t;
#define true 1
#define false 0
#define NULL ((void *)0)
#endif