old-cross-binutils/gdb/testsuite/gdb.base/setshow.c
Michael Snyder 79654d0b75 * gdb.base/setshow.exp: New file, tests show and set.
* gdb.base/setshow.c:   New file, tests show and set.
	* gdb.base/help.exp: Add test for help set|show annotate.
	* gdb.base/default.exp: Add test for set|show annotate.
PR 8511
1996-10-21 21:28:48 +00:00

16 lines
298 B
C

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