summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c26
1 files changed, 26 insertions, 0 deletions
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;
+}