Lines Matching refs:depth
73 static int doif(int thissym, int inif, int prevreject, int depth);
79 static int error(int err, int line, int depth);
216 int depth /* depth of ifdef's */ in doif() argument
250 thisreject, depth + 1)) != NO_ERR) in doif()
251 return (error(doret, stline, depth)); in doif()
257 reject, depth + 1)) != NO_ERR) in doif()
258 return (error(doret, stline, depth)); in doif()
263 return (error(ELSE_ERR, linenum, depth)); in doif()
280 return (error(ENDIF_ERR, linenum, depth)); in doif()
302 (void) error(err, stqcline, depth); in doif()
303 return (error(IEOF_ERR, stline, depth)); in doif()
305 return (error(err, stqcline, depth)); in doif()
584 error(int err, int line, int depth) in error() argument
599 (void) fprintf(stderr, gettext("ifdef depth: %d\n"), depth); in error()
603 return (depth > 1 ? IEOF_ERR : END_ERR); in error()