permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / janitorings / static_initfunc.c
CommitLineData
34e49164
C
1static int __init foo1(void)
2{
3}
4
5
6int __init foo2(void)
7{
8}
9
10static int foo3(void)
11{
12}
13
14
15static int foo4(void)
16{
17}
18
19
20module_init(foo1);
21module_init(foo2);