[gdb/testsuite] Reduce errors after gdb exit in default_gdb_start
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / setshow.c
CommitLineData
c906108c
SS
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
085dd6e6
JM
6int
7main(int argc, char **argv)
c906108c
SS
8{
9 int i = 1;
c906108c
SS
10
11 if (argc <= 0 || argc > 8)
12 return -1;
13 while (i < argc)
14 printf ("%s ", argv[i++]);
15 return 0;
16}
This page took 2.178354 seconds and 4 git commands to generate.