]> andersk Git - splint.git/blob - test/inparam.c
Updating for cert move
[splint.git] / test / inparam.c
1 extern unknown (int *x);
2 extern inparam (/*@in@*/ int *x);
3
4 void f (/*@out@*/ int *x)
5 {
6   if (3 > 4)
7     {
8       unknown (x);
9     }
10   else
11     {
12       inparam (x);
13     }
14 }
This page took 0.038409 seconds and 5 git commands to generate.