OSDN Git Service

initial commit
[openbsd-octeon/openbsd-octeon.git] / src / regress / usr.bin / xargs / showargs.c
1 /*       $OpenBSD: showargs.c,v 1.1 2010/03/25 01:43:47 schwarze Exp $ */
2
3 /*
4  * written by Ingo Schwarze <schwarze@openbsd.org> 2010
5  * and placed in the public domain
6  */
7
8 #include <stdio.h>
9
10 int
11 main(int argc, char *argv[]) {
12         int i;
13
14         for (i = 1; i < argc; i++)
15                 printf("%s|", argv[i]);
16         putchar('\n');
17
18         return 0;
19 }