permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / gotobreak.res
1 static void sedlbauer_config(struct pcmcia_device *link)
2 {
3 while (1) {
4 if ((cfg->mem.nwin > 0) || (dflt.mem.nwin > 0)) {
5 goto next_entry;
6 }
7 /* If we got this far, we're cool! */
8 break;
9
10 next_entry:
11 CS_CHECK(GetNextTuple, pcmcia_get_next_tuple(link, &tuple));
12 }
13
14 return 0;
15 }