xref: /aosp_15_r20/external/clang/test/Sema/Inputs/format-unused-system-args.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // "System header" for testing that -Wformat-extra-args does not apply to
2*67e74705SXin Li // arguments specified in system headers.
3*67e74705SXin Li 
4*67e74705SXin Li #define PRINT2(fmt, a1, a2) \
5*67e74705SXin Li   printf((fmt), (a1), (a2))
6*67e74705SXin Li 
7*67e74705SXin Li #define PRINT1(fmt, a1) \
8*67e74705SXin Li   PRINT2((fmt), (a1), 0)
9