cfad47cfa3/t3compiler/tads3/test/data/tokpaste.c
Commiter: Nikos Chantziaras
Author: Nikos Chantziaras
Revision: cfad47cfa3
File Size: 231 Bytes
(June 01, 2009 20:54 UTC) Almost 3 years ago
Initial commit.
/* * preprocessor token pasting - examples from ansi C++ 16.3.4(7) */ #define glue(a, b) a ## b #define xglue(a, b) glue(a, b) #define HIGHLOW "hello" #define LOW LOW ", world" xglue(HIGH, LOW) glue(HIGH, LOW); |