]> andersk Git - splint.git/blame - test/glob.c
noexpand always false.
[splint.git] / test / glob.c
CommitLineData
885824d3 1int x;
2int y;
3int z;
4
5int useGlob (int a)
6{
7 a = x + y;
8 return (a + x + y) ;
9}
10
11int dontuseGlob (int a)
12{
13 return (x + a);
14}
15
16int unspec (int a)
17{
18 return (y + z + a);
19}
20
21int callsUseGlob (int a)
22{
23 return (useGlob(a));
24}
25
26
27
28
This page took 0.094819 seconds and 5 git commands to generate.