#define p(x, ...) if(x) fprint(2, "%s%s", #__VA_ARGS__) void main(void) { p(1, "hello, ", "world"); }