Lines Matching refs:err
23 static void yyerror(const char *err);
24 static void zconfprint(const char *err, ...);
25 static void zconf_error(const char *err, ...);
544 static void zconfprint(const char *err, ...) in zconfprint() argument
549 va_start(ap, err); in zconfprint()
550 vfprintf(stderr, err, ap); in zconfprint()
555 static void zconf_error(const char *err, ...) in zconf_error() argument
561 va_start(ap, err); in zconf_error()
562 vfprintf(stderr, err, ap); in zconf_error()
567 static void yyerror(const char *err) in yyerror() argument
569 fprintf(stderr, "%s:%d: %s\n", zconf_curname(), zconf_lineno() + 1, err); in yyerror()