summary refs log tree commit diff
path: root/example/src/example.c
diff options
context:
space:
mode:
Diffstat (limited to 'example/src/example.c')
-rw-r--r--example/src/example.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/example/src/example.c b/example/src/example.c new file mode 100644 index 0000000..dac8c98 --- /dev/null +++ b/example/src/example.c
@@ -0,0 +1,10 @@
1#include <stdio.h>
2#include <stdint.h>
3
4int32_t main(void);
5
6int32_t main(void) {
7 printf("example\n");
8 return 0;
9}
10