mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-30 07:20:41 +00:00
27 lines
197 B
C
27 lines
197 B
C
/* pr 13484 */
|
|
|
|
#include <stdio.h>
|
|
|
|
int x;
|
|
|
|
void bar()
|
|
{
|
|
x--;
|
|
}
|
|
|
|
void foo()
|
|
{
|
|
x++;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
#ifdef usestubs
|
|
set_debug_traps ();
|
|
breakpoint ();
|
|
#endif
|
|
foo();
|
|
bar();
|
|
return 0;
|
|
}
|