summaryrefslogtreecommitdiff
path: root/05/tcc-0.9.27/tests/pp/01.c
blob: 2fc3d7960329f5bbb585925bca354fcdc601b094 (plain)
1
2
3
4
5
6
#define hash_hash # ## #
#define mkstr(a) # a
#define in_between(a) mkstr(a)
#define join(c, d) in_between(c hash_hash d)
char p[] = join(x, y);
// char p[] = "x ## y";