handle label attributes
[smatch.git] / validation / preprocessor4.c
blob8b8c4da268ae2aa6b345dd4729e4f434e7ba2ef3
1 /*
2 * More examples from the comp.std.c discussion.
4 * This should result in bar(bar). We get it right.
5 */
6 #define foo bar
7 #define mac(x) x(foo)
9 mac(foo)