From ee4c4798715680d091f1bfcf561ce8d747f5088e Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 28 Jul 2019 22:59:28 -0400 Subject: Initial commit --- (limited to 'src') diff --git a/src/local.mk b/src/local.mk new file mode 100644 index 0000000..234479c --- /dev/null +++ b/src/local.mk @@ -0,0 +1,2 @@ +wolfssl_util_SOURCES += \ + %reldir%/main.c diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..f5618fb --- /dev/null +++ b/src/main.c @@ -0,0 +1,26 @@ +/* + * Program entry point + * + * Copyright (C) 2019 Patrick McDermott + * + * This file is part of wolfssl-util. + * + * wolfssl-util 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. + * + * wolfssl-util 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 wolfssl-util. If not, see . + */ + +int +main(int argc, char **argv) +{ + return 0; +} -- cgit v0.9.1