[gdb/syscalls] Sync with strace v6.13
[binutils-gdb.git] / gdb / testsuite / gdb.base / reread1.c
blob5d1166a7258c3433950165fbfe4e29dd025175e7
1 /* pr 13484 */
3 #include <stdio.h>
5 int x;
7 void bar()
9 x--;
12 void foo()
14 x++;
17 int main()
19 foo();
20 bar();
21 return 0;