aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
blob: b0c0bd8b42c3a127d2a25e191b7c361fac19d017 (plain) (blame)
1
2
3
4
5
6
7
8
9
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;
}