mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-16 18:51:53 +02:00
b2/new function yywarn; make yyerror reuse yyerrorf
This commit is contained in:
parent
52e58cccbe
commit
2239440ef1
@ -34,6 +34,7 @@ void parse_kicad_bom(const char *name);
|
||||
void parse_symbols(const char *name);
|
||||
|
||||
void yywarnf(const char *fmt, ...);
|
||||
void yywarn(const char *s);
|
||||
void __attribute__((noreturn)) yyerrorf(const char *fmt, ...);
|
||||
void __attribute__((noreturn)) yyerror(const char *s);
|
||||
|
||||
|
@ -197,6 +197,12 @@ void yywarnf(const char *fmt, ...)
|
||||
}
|
||||
|
||||
|
||||
void yywarn(const char *s)
|
||||
{
|
||||
yywarnf("%s", s);
|
||||
}
|
||||
|
||||
|
||||
void __attribute__((noreturn)) yyerrorf(const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
@ -212,8 +218,7 @@ void __attribute__((noreturn)) yyerrorf(const char *fmt, ...)
|
||||
|
||||
void __attribute__((noreturn)) yyerror(const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s:%d: %s\n", file_name, lineno, s);
|
||||
exit(1);
|
||||
yyerrorf("%s", s);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user