]> andersk Git - splint.git/blame - test/metastate/file2.c
Added the splint.org css sheet to the html version of the faq.
[splint.git] / test / metastate / file2.c
CommitLineData
80ee600a 1static void checkOpen (/*@open@*/ /*@null@*/ FILE *);
2
3int main (void)
4{
5 FILE *fle1 = fopen ("test1", "r");
6
7 if (fle1 == NULL)
8 {
9 FILE *fle2 = fopen ("test2", "r");
10 checkOpen (fle2);
11 } /* fle2 not closed */
12
13 return 0; /* fle1 not closed */
14}
15
This page took 0.119951 seconds and 5 git commands to generate.