summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-05-20 13:39:52 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-05-20 13:39:52 (EDT)
commit41caa6f8cafcef43ce5ac20bd18ba5ae64cf829d (patch)
treee287d482c1a19a39e2be4be23bda6922950d86c3 /src
downloadcursespong-41caa6f8cafcef43ce5ac20bd18ba5ae64cf829d.zip
cursespong-41caa6f8cafcef43ce5ac20bd18ba5ae64cf829d.tar.gz
cursespong-41caa6f8cafcef43ce5ac20bd18ba5ae64cf829d.tar.bz2
Initial commit.
Diffstat (limited to 'src')
-rw-r--r--src/local.mk2
-rw-r--r--src/main.c9
2 files changed, 11 insertions, 0 deletions
diff --git a/src/local.mk b/src/local.mk
new file mode 100644
index 0000000..6d30651
--- /dev/null
+++ b/src/local.mk
@@ -0,0 +1,2 @@
+src_SOURCES = \
+ src/main.c
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..b014b94
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+int
+main(void)
+{
+ puts("Hello, world!");
+
+ return 0;
+}