mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
5 lines
131 B
C
5 lines
131 B
C
/* Tests for predefined macro __COUNTER__ */
|
|
|
|
#line GET_COUNTER() /* 1st: 8; 2nd: 9 */
|
|
int CONCAT(ident,GET_LINE()) = GET_LINE();
|