xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/reread1.c (revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)
1 /* pr 13484 */
2 
3 #include <stdio.h>
4 
5 int x;
6 
bar()7 void bar()
8 {
9   x--;
10 }
11 
foo()12 void foo()
13 {
14   x++;
15 }
16 
main()17 int main()
18 {
19   foo();
20   bar();
21   return 0;
22 }
23