From 7599edf7cfdf4af11a706fb2b434495c02122732 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Mon, 19 Aug 2019 23:30:36 -0400 Subject: Initial commit --- (limited to 'src') 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 . + */ + +int +main(int argc, char **argv) +{ + return 0; +} -- cgit v0.9.1