aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test.c b/test.c
new file mode 100644
index 0000000..b0c0bd8
--- /dev/null
+++ b/test.c
@@ -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;
+}