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, ...);
547 static void zconfprint(const char *err, ...) in zconfprint() argument
552 va_start(ap, err); in zconfprint()
553 vfprintf(stderr, err, ap); in zconfprint()
558 static void zconf_error(const char *err, ...) in zconf_error() argument
564 va_start(ap, err); in zconf_error()
565 vfprintf(stderr, err, ap); in zconf_error()
570 static void yyerror(const char *err) in yyerror() argument
572 fprintf(stderr, "%s:%d: %s\n", zconf_curname(), zconf_lineno() + 1, err); in yyerror()