]> andersk Git - splint.git/blame - test/deadparam.c
Fixed manual csvoverwrite.
[splint.git] / test / deadparam.c
CommitLineData
80ee600a 1extern void f (/*@out@*/ char *s);
2extern void g (/*@special@*/ char *s) /*@allocates s@*/ ;
3
4void 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.063388 seconds and 5 git commands to generate.