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
kernel-printf: add printf format %pra for struct range
[smatch.git]
/
validation
/
preprocessor
/
preprocessor12.c
blob
e23e53b2b155f968d5a0a328d150da56b6a42212
1
/*
2
* GNU kludge
3
*/
4
#define A(x,...) x,##__VA_ARGS__
5
A
(
1
)
6
A
(
1
,
2
)
7
A
(
1
,
2
,
3
)
8
/*
9
* check-name: Preprocessor #12
10
* check-command: sparse -E $file
11
*
12
* check-output-start
13
14
1
15
1,2
16
1,2,3
17
* check-output-end
18
*/