mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
7 lines
185 B
C
7 lines
185 B
C
// RUN: %clang_cc1 -E %s | grep '^"x ## y";$'
|
|
#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);
|
|
|