xref: /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/setshow.c (revision b2ea75c1b17e1a9a339660e7ed45cd24946b230e)
1 /* IMPORTANT: leave this comment in the first line of this source file. */
2 /*            this will guarantee that line 1 contains no code. */
3 
4 #include <stdio.h>
5 
6 int
7 main(argc, argv)
8      int argc;
9      char **argv;
10 {
11   int i = 1;
12 
13   while (i < argc)
14     printf ("%s ", argv[i++]);
15   return 0;
16 }
17