summaryrefslogtreecommitdiff
path: root/usrbin/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'usrbin/main.c')
-rw-r--r--usrbin/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/usrbin/main.c b/usrbin/main.c
new file mode 100644
index 0000000..5cc7567
--- /dev/null
+++ b/usrbin/main.c
@@ -0,0 +1,7 @@
+#include <stdint.h>
+
+extern int print(char*);
+
+void main(void) {
+ print("We did it ma!\n");
+}