/* * Return type based on if the #if expression evaluates to 0 */ int zero_value (char *exp, struct filepointer *filep, struct inclist *file_red) { if (cppsetup (exp, filep, file_red)) return (IFFALSE); else return (IF); }
/* * Return type based on if the #if expression evaluates to 0 */ int zero_value(char *exp, struct filepointer *filep, struct inclist *file_red, struct symhash *symbols) { global_symbols = symbols; /* HACK! see above */ if (cppsetup(exp, filep, file_red)) return IFFALSE; else return IF; }