diff --git a/src/main.c b/src/main.c index 34102f4..cd66ebb 100644 --- a/src/main.c +++ b/src/main.c @@ -10,8 +10,19 @@ * Description: Entrypoint to program */ +#include #include +typedef uint64_t u64; +typedef uint32_t u32; +typedef int32_t i32; +typedef int64_t i64; +typedef float f32; +typedef double f64; + +typedef uint8_t byte; +typedef u64 word; + int main(void) { puts("Hello, world!");