]> andersk Git - splint.git/blame - test/manual/order.c
noexpand always false.
[splint.git] / test / manual / order.c
CommitLineData
77970e15 1extern int glob;
2
3extern int mystery (void);
4
5extern int modglob (void)
6 /*@globals glob@*/
7 /*@modifies glob@*/ ;
8
9int f (int x, int y[])
10{
11 int i = x++ * x;
12
13 y[i] = i++;
14 i += modglob() * glob;
15 i += mystery() * glob;
16 return i;
17}
This page took 0.329269 seconds and 5 git commands to generate.