Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gdb6 / gdb / testsuite / gdb.base / chng-syms.c
blob3394f5c3897a335f749ed29fe0dfd2ffe650f6cf
1 /*
2 * Test that GDB cleans up properly after errors that result when a
3 * breakpoint is reset.
4 */
6 /* VARIABLE is a macro defined on the compiler command line. */
8 #include <stdlib.h>
10 int VARIABLE = 42;
12 void stop_here ()
14 VARIABLE *= 2;
17 int main ()
19 stop_here ();
20 exit (0);