mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 09:52:44 -04:00
12 lines
142 B
C
12 lines
142 B
C
|
|
#ifdef D1
|
|
/*Line 3*/ #define A(x, y, z) (x)
|
|
#endif
|
|
|
|
#ifdef D2
|
|
/*Line 7*/ #define A(x, y, z) (y)
|
|
#endif
|
|
|
|
#ifdef A
|
|
/*Line 11*/ #undef A
|
|
#endif
|