gdb/doc/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / reread2.c
1 /* pr 13484 */
2
3 #include <stdio.h>
4
5 int x;
6
7 void foo()
8 {
9 x++;
10 printf("This is foo\n");
11 }
12
13 int main()
14 {
15 foo();
16 return 0;
17 }
This page took 0.030777 seconds and 5 git commands to generate.