1 #pragma once
2 
3 #ifndef __CONCAT
4 #define __CONCAT1(x,y) x ## y
5 #define __CONCAT(x,y) __CONCAT1(x,y)
6 #endif
7