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;
|
||
|
}
|