permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / gcc_min_max.c
1 int main()
2 {
3 int a, b;
4 a <? b;
5 a <?= b;
6 a >? b;
7 a >?= b;
8 }