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