blob: ae9801047d4ad55aa9a8b8cb7f25fa4dbd0d4c34 [file] [log] [blame]
/* 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;
}