]> andersk Git - splint.git/blame - test/inparam.c
Updating for cert move
[splint.git] / test / inparam.c
CommitLineData
885824d3 1extern unknown (int *x);
2extern inparam (/*@in@*/ int *x);
3
4void 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.052522 seconds and 5 git commands to generate.