]> andersk Git - splint.git/blame - test/temp/yeates.c
Removed stray files in test
[splint.git] / test / temp / yeates.c
CommitLineData
80ee600a 1int foo (char *b);
2
3struct s {
4 char *i;
5};
6
7static int redir(struct s *s)
8{
9 s->i = malloc(1 * sizeof(int));
10
11 if (!(s->i))
12 return 1;
13
14 if (0) {
15 free(s->i);
16 return 1;
17 }
18
19 free (s->i);
20 return 0;
21}
22
This page took 0.075173 seconds and 5 git commands to generate.