gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / args.c
1 #include <stdio.h>
2
3 int
4 main (int argc, char **argv)
5 {
6 int i = 0;
7 printf ("%d\n", argc);
8 while (i < argc)
9 printf ("%s\n", argv[i++]);
10
11 return 0; /* set breakpoint here */
12 }
This page took 0.062675 seconds and 4 git commands to generate.