aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/reread2.c
blob: 181616c7aca90b2a1e393f3a9b803be41de84e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* pr 13484 */

#include <stdio.h>

int x;

void foo()
{
  x++;
  printf("This is foo\n");
}

int main()
{
  foo();
  return 0;
}