• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/testsuite/gdb.base/
1/* pr 13484 */
2
3#include <stdio.h>
4
5int x;
6
7void foo()
8{
9  x++;
10  printf("This is foo\n");
11}
12
13int main()
14{
15#ifdef usestubs
16  set_debug_traps ();
17  breakpoint ();
18#endif
19  foo();
20  return 0;
21}
22