#ifndef NIL_H #define NIL_H #ifdef QCC_SUPPORT_NIL #define func_null nil #define string_null nil #else // the NULL function var void func_null(void); string string_null; #endif #endif