]> andersk Git - splint.git/blob - test/deadparam.c
Fixed manual csvoverwrite.
[splint.git] / test / deadparam.c
1 extern void f (/*@out@*/ char *s);
2 extern void g (/*@special@*/ char *s) /*@allocates s@*/ ;
3
4 void t (/*@only@*/ char *s1, /*@only@*/ char *s2)
5 {
6   free (s1);
7   f (s1);
8
9   free (s2);
10   g (s2);
11 }
This page took 0.037301 seconds and 5 git commands to generate.