mirror of
https://github.com/frida/tinycc
synced 2024-12-01 03:47:01 +03:00
11 lines
151 B
C
11 lines
151 B
C
#define CAT2(a,b) a##b
|
|
#define CAT(a,b) CAT2(a,b)
|
|
#define AB(x) CAT(x,y)
|
|
|
|
int main(void)
|
|
{
|
|
int xy = 42;
|
|
printf("%d\n", CAT(A,B)(x));
|
|
return 0;
|
|
}
|