I've seen the following construct (with false replacing 0 in C++) in a lot of code (it's all over the linux kernel, for example).
#define myMacro( x ) do { something(x); } while (0);
Why is this construct used instead of the less cluttered:
#define myMacro( x ) something(x)
