home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / awk / awk320sr.zip / YYERROR.C < prev    next >
C/C++ Source or Header  |  1991-04-25  |  253b  |  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.