permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / bugloop.res
1 static int stir_transmit_thread(void *arg)
2 {
3
4 while (x)
5 {
6 /* if suspending, then power off and wait */
7 if (unlikely(freezing(current))) {
8 refrigerator();
9
10 }
11 }
12 }
13