Initial creation of sourceware repository
This commit is contained in:
parent
cd946cff9e
commit
c906108c21
2470 changed files with 976797 additions and 0 deletions
22
gdb/testsuite/gdb.base/setshow.c
Normal file
22
gdb/testsuite/gdb.base/setshow.c
Normal file
|
@ -0,0 +1,22 @@
|
|||
/* 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;
|
||||
#ifdef usestubs
|
||||
set_debug_traps();
|
||||
breakpoint();
|
||||
#endif
|
||||
|
||||
if (argc <= 0 || argc > 8)
|
||||
return -1;
|
||||
while (i < argc)
|
||||
printf ("%s ", argv[i++]);
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue