]> andersk Git - splint.git/blame - test/tclauses/undef.c
Removed .lh .lcs .lcd files in test directory from distribution tar ball as suggested...
[splint.git] / test / tclauses / undef.c
CommitLineData
80ee600a 1extern int glob;
2extern /*@only@*/ int *ogp;
3
4int f (void) /*@globals undef glob, killed ogp;@*/
5{
6 free (ogp);
7 return glob;
8}
9
10# if 0
11static int sglob;
12static /*@only@*/ int *sogp;
13
14int f1 (void) /*@globals undef sglob, killed sogp;@*/
15{
16 free (sogp);
17 return sglob;
18}
19
20# endif
This page took 0.065317 seconds and 5 git commands to generate.