]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - misc/source/gmqcc-src/tests/predef_func.qc
Include gmqcc binaries for Windows and Linux
[voretournament/voretournament.git] / misc / source / gmqcc-src / tests / predef_func.qc
1 void main() {
2 #ifdef SIMPLE
3     print(__FUNC__, "\n");
4 #elifdef CONCATENATED
5     print(__FUNC__ "\n");
6 #else
7 #   error this is wrong
8 #endif
9 }