opnsense-src/test/Preprocessor/macro_paste_hashhash.c

8 lines
185 B
C
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -E %s | grep '^"x ## y";$'
2009-06-02 13:58:47 -04:00
#define hash_hash # ## #
#define mkstr(a) # a
#define in_between(a) mkstr(a)
#define join(c, d) in_between(c hash_hash d)
join(x, y);