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
/
csyntax2.c
blob
cbc1925d4f0386c5bb9101ff1c5eb86a93e968b6
1
typedef
int
mapping
;
2
typedef
int
mappair
;
3
4
int
smalloc
();
5
6
mapping
*
7
mapping_create
(
void
)
8
{
9
mapping
**
t
;
10
int
x
;
11
12
t
= (
mapping
**)
smalloc
(
sizeof
(
mapping
*));
13
x
=
sizeof
(
t
);
14
x
=
sizeof
*
t
;
15
return
*
t
;
16
}
17