permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / sizeptr.c
CommitLineData
1eddfd50
C
1int main () {
2 int *x;
3 int *y;
4 size_t a;
5 ssize_t b;
6 ptrdiff_t c;
7
8 foo(sizeof *x,a);
9 foo(*x,b);
10 foo(x-y,c);
11}