diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-28 22:59:28 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-07-28 23:11:01 (EDT) |
commit | ee4c4798715680d091f1bfcf561ce8d747f5088e (patch) | |
tree | 981ce3d4f20411e352aed950ec094f002eabe16e /src |
Initial commit
Diffstat (limited to 'src')
-rw-r--r-- | src/local.mk | 2 | ||||
-rw-r--r-- | src/main.c | 26 |
2 files changed, 28 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>. + */ + +int +main(int argc, char **argv) +{ + return 0; +} |