binutils-gdb/gdb/testsuite/gdb.base/setshow.c

17 lines
319 B
C
Raw Normal View History

/* IMPORTANT: leave this comment in the first line of this source file. */
/* this will guarantee that line 1 contains no code. */
#include <stdio.h>
1999-06-28 18:06:02 +02:00
int
main(int argc, char **argv)
{
int i = 1;
if (argc <= 0 || argc > 8)
return -1;
while (i < argc)
printf ("%s ", argv[i++]);
return 0;
}