repo.or.cz
/
smatch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
debug: introduce __smatch_state(check_name, state_name)
[smatch.git]
/
validation
/
double-semicolon.c
blob
a1b8e6361cc71cba1ec58262d35638a2153be23b
1
extern
void
*
memset
(
void
*
s
,
int
c
,
int
n
);
2
static void
test
(
void
)
3
{
4
struct
{
int
foo
;; }
val
;
5
memset
(&
val
,
0
,
sizeof
(
val
));
6
}
7
/*
8
* check-name: Double semicolon in struct
9
*/