summaryrefslogtreecommitdiff
path: root/licence.c
diff options
context:
space:
mode:
Diffstat (limited to 'licence.c')
-rw-r--r--licence.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/licence.c b/licence.c
new file mode 100644
index 0000000..0c4338a
--- /dev/null
+++ b/licence.c
@@ -0,0 +1,16 @@
+/*
+ * licence.c: licence text
+ */
+
+#include <stdio.h>
+
+static char *licencetext[] = {
+ "FIXME: licence text goes here",
+ NULL
+};
+
+void licence(void) {
+ char **p;
+ for (p = licencetext; *p; p++)
+ puts(*p);
+}