]> git.saurik.com Git - bison.git/blobdiff - lib/yyerror.c
NEWS: update.
[bison.git] / lib / yyerror.c
index 5eb339fa3dde03e4bccb9aa14ed2dac4db765981..c9f492f8433ac5d30fca1f3617ba6bbbb0cc0ad2 100644 (file)
@@ -17,7 +17,6 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
-#include <config.h>
 #include <stdio.h>
 
 int yyerror (char const *);
@@ -25,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;
 }