]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/nil.qh
Merge branch 'master' into terencehill/tooltips_cleanup
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / nil.qh
1 #ifndef NIL_H
2 #define NIL_H
3
4 #ifdef QCC_SUPPORT_NIL
5 #define func_null nil
6 #define string_null nil
7 #else
8 // the NULL function
9 var void func_null(void);
10 string string_null;
11 #endif
12
13 #endif