Token pasting helper

Adds utility macro for creating new tokens by token pasting
This commit is contained in:
Adrian Danis
2018-01-08 17:16:20 +11:00
parent d43b717ef1
commit 8d0b13c640

View File

@@ -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__