xref: /csrg-svn/lib/liby/yyerror.c (revision 24246)
1*24246Smckusick /*
2*24246Smckusick  * Copyright (c) 1985 Regents of the University of California.
3*24246Smckusick  * All rights reserved.  The Berkeley software License Agreement
4*24246Smckusick  * specifies the terms and conditions for redistribution.
5*24246Smckusick  */
6*24246Smckusick 
7*24246Smckusick #ifndef lint
8*24246Smckusick static char sccsid[] = "@(#)yyerror.c	5.1 (Berkeley) 08/09/85";
9*24246Smckusick #endif not lint
10*24246Smckusick 
11*24246Smckusick # include <stdio.h>
12*24246Smckusick 
13*24246Smckusick yyerror(s)
14*24246Smckusick 	char *s;
15*24246Smckusick {
16*24246Smckusick 
17*24246Smckusick 	fprintf(stderr, "%s\n", s);
18*24246Smckusick }
19