OpenGrok
Cross Reference: stringize_space2.c
xref
: /
external
/
clang
/
test
/
Preprocessor
/
stringize_space2.c
Home
|
History
|
Annotate
|
Download
|
only in
Preprocessor
1
/* RUN: %clang_cc1 -E %s | grep 'a c'
2
*/
3
#
define
t(x) #x
4
t(a
5
c)
6
7