]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/nil.qh
6b9cdd099df7a3455d6b36a6fbb7d0994b8c7f00
[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