cfad47cfa3/t3compiler/tads3/test/data/tokpaste.c

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
/*
2
 *   preprocessor token pasting - examples from ansi C++ 16.3.4(7)
3
 */
4
5
#define glue(a, b)  a ## b
6
#define xglue(a, b) glue(a, b)
7
#define HIGHLOW     "hello"
8
#define LOW         LOW ", world"
9
10
xglue(HIGH, LOW)
11
glue(HIGH, LOW);
12