Lines Matching refs:err
26 static void yyerror(const char *err);
27 static void zconfprint(const char *err, ...);
28 static void zconf_error(const char *err, ...);
601 static void zconfprint(const char *err, ...) in zconfprint() argument
606 va_start(ap, err); in zconfprint()
607 vfprintf(stderr, err, ap); in zconfprint()
612 static void zconf_error(const char *err, ...) in zconf_error() argument
618 va_start(ap, err); in zconf_error()
619 vfprintf(stderr, err, ap); in zconf_error()
624 static void yyerror(const char *err) in yyerror() argument
626 fprintf(stderr, "%s:%d: %s\n", cur_filename, cur_lineno, err); in yyerror()