aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/int-type.c
blob: da7eec00828a1d88b0318fd1cdf8fc896f507175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

int x;
int y;
int z;
int w;



int main ()
{
   
    x = 14;
    y = 3;
    z = 2;
    w = 2;

    return 0;
    
}