Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
91be65be656072a68b51a8c4e7bb751ea475d896
/
.
/
clang
/
test
/
Sema
/
Inputs
/
format-unused-system-args.h
blob: 3a6b1654fbd68ad0b9b7f1ab2130e73396575fb1 [
file
] [
log
] [
blame
]
// "System header" for testing that -Wformat-extra-args does not apply to
// arguments specified in system headers.
#define
PRINT2
(
fmt
,
a1
,
a2
)
\
printf
((
fmt
),
(
a1
),
(
a2
))
#define
PRINT1
(
fmt
,
a1
)
\
PRINT2
((
fmt
),
(
a1
),
0
)