repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
Sema
/
Inputs
/
format-unused-system-args.h
blob
3a6b1654fbd68ad0b9b7f1ab2130e73396575fb1
1
// "System header" for testing that -Wformat-extra-args does not apply to
2
// arguments specified in system headers.
3
4
#define PRINT2(fmt, a1, a2) \
5
printf((fmt), (a1), (a2))
6
7
#define PRINT1(fmt, a1) \
8
PRINT2((fmt), (a1), 0)