summaryrefslogtreecommitdiff
path: root/05/tcc-0.9.27/tests/tests2/71_macro_empty_arg.c
blob: f0d3511b9d0d03ebf2c06de555df926b9a8dfb59 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

#define T(a,b,c) a b c

int main(void)
{
    printf("%d", T(1,+,2) T(+,,) T(,2,*) T(,7,) T(,,));
    return 0;
}