141938Sbostic /*- 2*61325Sbostic * Copyright (c) 1990, 1993 3*61325Sbostic * The Regents of the University of California. All rights reserved. 441938Sbostic * 541938Sbostic * %sccs.include.redist.c% 624246Smckusick */ 724246Smckusick 824246Smckusick #ifndef lint 9*61325Sbostic static char sccsid[] = "@(#)yyerror.c 8.1 (Berkeley) 06/04/93"; 1041938Sbostic #endif /* not lint */ 1124246Smckusick 1241938Sbostic #include <stdio.h> 1324246Smckusick yyerror(msg)1441938Sbosticyyerror(msg) 1541938Sbostic char *msg; 1624246Smckusick { 1741938Sbostic (void)fprintf(stderr, "%s\n", msg); 1841938Sbostic return(0); 1924246Smckusick } 20