Don't try calling lsl when file is missing.
[splint-patched.git] / test / glob.c
blobf0a46878cb70d93a99f1013d9e30c2962ccff23b
1 int x;
2 int y;
3 int z;
5 int useGlob (int a)
7 a = x + y;
8 return (a + x + y) ;
11 int dontuseGlob (int a)
13 return (x + a);
16 int unspec (int a)
18 return (y + z + a);
21 int callsUseGlob (int a)
23 return (useGlob(a));