0173-macro.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0173-macro.c (104B)
---
1 #define x f
2 #define y() f
3
4 typedef struct { int f; } S;
5
6 int
7 main()
8 {
9 S s;
10
11 s.x = 0;
12 return s.y();
13 }