repo.or.cz
/
splint-patched.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Two useless/empty bison reductions removed.
[splint-patched.git]
/
test
/
deadparam.c
blob
f31b430b80c037982fcec5854048a4a7085c9361
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
}