Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/gdb/testsuite/gdb.base/chng-syms.c
2023-03-06 14:48:14 +01:00

22 lines
295 B
C

/*
* Test that GDB cleans up properly after errors that result when a
* breakpoint is reset.
*/
/* VARIABLE is a macro defined on the compiler command line. */
#include <stdlib.h>
int VARIABLE = 42;
void stop_here ()
{
VARIABLE *= 2;
}
int main ()
{
stop_here ();
exit (0);
}