1 
2 #ifndef SCP_DEFINES_H
3 #define SCP_DEFINES_H
4 #pragma once
5 
6 #define SCP_TOKEN_CONCAT1(x, y) x ## y
7 #define SCP_TOKEN_CONCAT(x, y) SCP_TOKEN_CONCAT1(x, y)
8 
9 #define SCP_UNUSED(x) (void)(x)
10 
11 #endif // SCP_DEFINES_H
12