]> andersk Git - splint.git/blame_incremental - test/inparam.c
Fixed handling of wide character strings (L"test").
[splint.git] / test / inparam.c
... / ...
CommitLineData
1extern unknown (int *x);
2extern inparam (/*@in@*/ int *x);
3
4void f (/*@out@*/ int *x)
5{
6 if (3 > 4)
7 {
8 unknown (x); /* x not completely defined */
9 }
10 else
11 {
12 inparam (x); /* x not completely defined */
13 }
14}
This page took 0.043672 seconds and 5 git commands to generate.