X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/6e30ede87a1c39c53842a6a747ecd9f7484d92a5..527187137ac6314b86246bca71cb996203b4fa10:/lib/yyerror.c?ds=sidebyside diff --git a/lib/yyerror.c b/lib/yyerror.c index 6db0e158..c9f492f8 100644 --- a/lib/yyerror.c +++ b/lib/yyerror.c @@ -1,6 +1,6 @@ /* Yacc library error-printing function. - Copyright (C) 2002, 2009, 2010 Free Software Foundation, Inc. + Copyright (C) 2002, 2009-2012 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -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; }