reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 | // "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) |