]> andersk Git - splint.git/blob - test/manual/loop.c
Fixes for win32
[splint.git] / test / manual / loop.c
1 extern int glob1, glob2;
2
3 extern int f (void) 
4   /*@globals glob1@*/ 
5   /*@modifies nothing@*/ ;
6
7 extern void g (void) 
8   /*@modifies glob2@*/ ;
9
10 extern void h (void) ; 
11
12 void upto (int x) 
13 {
14   while (x > f()) g();
15   while (f() < 3) h();
16 }
This page took 0.054322 seconds and 5 git commands to generate.