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
/
tests2.5
/
immutable.c
blob
76a698e3866aff17546d5767c4a915a54313b2d7
1
# include
"immutable.h"
2
3
immutable
immutable_create
(
int
x
)
4
{
5
immutable res
= (
immutable
)
malloc
(
sizeof
(*
res
));
6
7
res
->
x
=
x
;
8
return
res
;
9
}
10