可変引数のマクロの書き方

gcc


#define TRACE(format, args...) printf(format, ##args)
C99流

#define TRACE(format, ...) printf(format, __VA_ARGS__)