aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.c11
1 files changed, 11 insertions, 0 deletions
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 <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!");