Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
binutils
/
gdb
/
testsuite
/
gdb.base
/
reread1.c
blob: 5d1166a7258c3433950165fbfe4e29dd025175e7 [
file
]
/* pr 13484 */
#include
<stdio.h>
int
x
;
void
bar
()
{
x
--;
}
void
foo
()
{
x
++;
}
int
main
()
{
foo
();
bar
();
return
0
;
}