diff options
author | Tony Theodore <tonyt@logyst.com> | 2018-04-06 04:40:20 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-04-08 02:19:02 (GMT) |
commit | ab0b797479a9ac567dbb7fb0585750f158eff006 (patch) | |
tree | 714fd5f49be6e5a2ea69c270c744800652292330 /src/gcc-test.c | |
parent | e9719b6c3dbdf14fbf5955c0ccabea5dcc913e3b (diff) | |
download | mxe-ab0b797479a9ac567dbb7fb0585750f158eff006.zip mxe-ab0b797479a9ac567dbb7fb0585750f158eff006.tar.gz mxe-ab0b797479a9ac567dbb7fb0585750f158eff006.tar.bz2 |
gcc: update and re-enable coverage
see: http://lists.nongnu.org/archive/html/mingw-cross-env-list/2018-04/msg00003.html
fixes #1665
Diffstat (limited to 'src/gcc-test.c')
-rw-r--r-- | src/gcc-test.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gcc-test.c b/src/gcc-test.c new file mode 100644 index 0000000..f1bc5d4 --- /dev/null +++ b/src/gcc-test.c @@ -0,0 +1,12 @@ +/* + * This file is part of MXE. See LICENSE.md for licensing information. + */ + +#include <stdio.h> + +int main(int argc, char** argv) { + if (argc >= 2) { + printf("argv[1] = %s\n", argv[1]); + } + return 0; +} |