summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2021-03-15 06:25:38 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2021-03-15 09:23:28 (EDT)
commit67b0f851b48bffaf8d97e702338004778f364777 (patch)
treec8bb842d6921eac001d54991e59576e27aa79b84 /src/main.c
parenta3356b9781e1dd362ecc7cd2c4c2cf20a893a4b6 (diff)
downloaddodge-balls-67b0f851b48bffaf8d97e702338004778f364777.zip
dodge-balls-67b0f851b48bffaf8d97e702338004778f364777.tar.gz
dodge-balls-67b0f851b48bffaf8d97e702338004778f364777.tar.bz2
Add build system and package documentation
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..380a615
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int
+main(int argc, char *argv[])
+{
+ puts("Hello, world!");
+ return EXIT_SUCCESS;
+}