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
Some consistency changes to library & headers flags.
[splint-patched.git]
/
test
/
clauses2.c
blob
92c80f829fd8220a6b68b901f5d5fa63b016e194
1
extern
/*@only@*/
int
*
new_ip
(
void
);
2
3
/*@only@*/
int
*
f
(
void
)
4
{
5
int
*
x
=
new_ip
();
6
int
*
y
;
7
8
if
(
3
>
4
)
9
{
10
y
=
x
;
11
}
12
else
13
{
14
free
(
x
);
15
y
=
new_ip
();
16
}
17
18
return
y
;
19
}