repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tcc
/
64_macro_nesting.c
blob
676e5d3ef35d974fc19ee230d7b47082aa1201e5
1
#include <stdio.h>
// printf()
2
3
#define CAT2(a,b) a##b
4
#define CAT(a,b) CAT2(a,b)
5
#define AB(x) CAT(x,y)
6
7
int
main
(
void
)
8
{
9
int
xy
=
42
;
10
printf
(
"%d
\n
"
,
CAT
(
A
,
B
)(
x
));
11
return
0
;
12
}