diff options
Diffstat (limited to 'test.c')
-rw-r--r-- | test.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +/* See LICENSE file for copyright and license details. */ +#include <stdio.h> + +int +main(int argc, char *argv[]) +{ + if (argc) + printf("%s,%i\n", argv[0], argc); + return 0; +} |