• 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/*
2 *   Test that GDB cleans up properly after errors that result when a
3 * breakpoint is reset.
4 */
5
6/* VARIABLE is a macro defined on the compiler command line. */
7
8#include <stdlib.h>
9
10int VARIABLE = 42;
11
12void stop_here ()
13{
14  VARIABLE *= 2;
15}
16
17int main ()
18{
19  stop_here ();
20  exit (0);
21}
22
23