]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.base/setshow.c
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / setshow.c
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 #ifdef usestubs
13 set_debug_traps();
14 breakpoint();
15 #endif
16
17 if (argc <= 0 || argc > 8)
18 return -1;
19 while (i < argc)
20 printf ("%s ", argv[i++]);
21 return 0;
22 }