]> andersk Git - splint.git/blob - test/manual/order.c
Fixed problem with handleing oldsytle function declarations.
[splint.git] / test / manual / order.c
1 extern int glob;
2
3 extern int mystery (void);
4
5 extern int modglob (void)
6    /*@globals glob@*/
7    /*@modifies glob@*/ ;
8  
9 int 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.036156 seconds and 5 git commands to generate.