home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compcomp / awk / src / yyerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-25  |  253 b   |  17 lines

  1. /*
  2.  *  yyerror.c -- stdio print error
  3.  *
  4.  * Copyright (C) 1988, 1989, 1990, 1991 by Rob Duff
  5.  * All rights reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9.  
  10. yyerror(fmt, arg)
  11. char *fmt, *arg;
  12. {
  13.     fprintf(stderr, fmt, arg);
  14.     fputc('\n', stderr);
  15. }
  16.  
  17.