mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
9 lines
142 B
C++
9 lines
142 B
C++
void main() {
|
|
#ifdef SIMPLE
|
|
print(__FUNC__, "\n");
|
|
#elifdef CONCATENATED
|
|
print(__FUNC__ "\n");
|
|
#else
|
|
# error this is wrong
|
|
#endif
|
|
}
|