]> git.xonotic.org Git - xonotic/gmqcc.git/blob - tests/predef_func.qc
gitignore: add gmqcc, gmqpak, qmcvm, testsuite, pak.
[xonotic/gmqcc.git] / 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 }