1 | |
---|---|
2 | #ifdef D1 |
3 | /*Line 3*/ #define A(x, y, z) (x) |
4 | #endif |
5 | |
6 | #ifdef D2 |
7 | /*Line 7*/ #define A(x, y, z) (y) |
8 | #endif |
9 | |
10 | #ifdef A |
11 | /*Line 11*/ #undef A |
12 | #endif |
13 |
1 | |
---|---|
2 | #ifdef D1 |
3 | /*Line 3*/ #define A(x, y, z) (x) |
4 | #endif |
5 | |
6 | #ifdef D2 |
7 | /*Line 7*/ #define A(x, y, z) (y) |
8 | #endif |
9 | |
10 | #ifdef A |
11 | /*Line 11*/ #undef A |
12 | #endif |
13 |