blob: 18927e842c098c07f7ce8b443d841c787a3ae908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
int testproc2_x;
void _M2_init (void)
{
testproc2_x = 1;
}
int bar (void)
{
int t, t1;
int c1;
t = testproc2_x;
t1 = t + 1;
testproc2_x = t1;
c1 = testproc2_x;
return c1;
}
|