permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / fns.c
CommitLineData
34e49164
C
1int __init probe_base_port(int base) {
2 for (base = b; base <= e; base += 0x10) {
3 if (check_region(base, 0x10))
4 continue;
5 return (base);
6 }
7 return 0;
8}
9
10int __init cm206_init(void) {
11 request_region(cm206_base, 0x10, "cm206");
12}