summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-08-19 23:30:36 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-08-19 23:33:19 (EDT)
commit7599edf7cfdf4af11a706fb2b434495c02122732 (patch)
treeeb5367e0c72bcd60b81e3fce333e48bf6592dae8 /src
downloadtimeteller-7599edf7cfdf4af11a706fb2b434495c02122732.zip
timeteller-7599edf7cfdf4af11a706fb2b434495c02122732.tar.gz
timeteller-7599edf7cfdf4af11a706fb2b434495c02122732.tar.bz2
Initial commit
Diffstat (limited to 'src')
-rw-r--r--src/local.mk2
-rw-r--r--src/main.c26
2 files changed, 28 insertions, 0 deletions
diff --git a/src/local.mk b/src/local.mk
new file mode 100644
index 0000000..e4bcd1c
--- /dev/null
+++ b/src/local.mk
@@ -0,0 +1,2 @@
+timeteller_SOURCES += \
+ %reldir%/main.c
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..2cc4061
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,26 @@
+/*
+ * Program entry point
+ *
+ * Copyright (C) 2019 Patrick McDermott
+ *
+ * This file is part of Timeteller.
+ *
+ * Timeteller is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Timeteller is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Timeteller. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+int
+main(int argc, char **argv)
+{
+ return 0;
+}