Token pasting helper
Adds utility macro for creating new tokens by token pasting
This commit is contained in:
parent
d43b717ef1
commit
8d0b13c640
1 changed files with 1 additions and 0 deletions
|
|
@ -18,6 +18,7 @@
|
|||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
|
||||
#define MIN(a,b) (((a)<(b))?(a):(b))
|
||||
#define MAX(a,b) (((a)>(b))?(a):(b))
|
||||
#define PASTE(a, b) a ## b
|
||||
|
||||
#ifndef __ASSEMBLER__
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue