projects
/
bison.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
maint: maintainer-release-check.
[bison.git]
/
lib
/
yyerror.c
diff --git
a/lib/yyerror.c
b/lib/yyerror.c
index 7db92bc4ed9d617d6e1b7f9d40e95a385e5397db..c9f492f8433ac5d30fca1f3617ba6bbbb0cc0ad2 100644
(file)
--- a/
lib/yyerror.c
+++ b/
lib/yyerror.c
@@
-24,5
+24,7
@@
int yyerror (char const *);
int
yyerror (char const *message)
{
- return fprintf (stderr, "%s\n", message);
+ fputs (message, stderr);
+ fputc ('\n', stderr);
+ return 0;
}