permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / dropparam.c
CommitLineData
34e49164
C
1int f(char *x, int y, char* z) {
2 return;
3}
4
5int g(char *x, int y, char* z) {
6 return;
7}
8
9
10void main(void)
11{
12 g("toto", 3, "tata");
13}