]> andersk Git - splint.git/blob - test/manual/modify.c
Fixes for win32
[splint.git] / test / manual / modify.c
1 void setx (int *x, int *y)
2   /*@modifies *x@*/
3 {
4   *y = *x;
5 }
6
7 void sety (int *x, int *y)   
8    /*@modifies *y@*/
9 {   
10    setx (y, x); 
11 }
12
This page took 0.034005 seconds and 5 git commands to generate.