home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / libsrc / bison / src / yyerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-10  |  68 b   |  7 lines

  1. #include <stdio.h>
  2.  
  3. yyerror(char *s)
  4. {
  5.   printf("%s\n", s);
  6. }
  7.