diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.c | 11 | 
1 files changed, 11 insertions, 0 deletions
| @@ -10,8 +10,19 @@   * Description: Entrypoint to program   */ +#include <stdint.h>  #include <stdio.h> +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!"); | 
