diff options
Diffstat (limited to '')
-rw-r--r-- | src/compiler.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/compiler.h b/src/compiler.h index 9c4cbc5..97c583c 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -14,4 +14,7 @@ #define UNUSED #endif +#define CONCAT_(a, b) a##b +#define CONCAT(a, b) CONCAT_(a, b) + #endif |