]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/nil.qh
789b1f9c0f530163c030d95437e993df9c39a9ae
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / nil.qh
1 #ifndef NIL_H
2 #define NIL_H
3
4 #if 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