home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume11 / watcher / part01 / yyerror.c < prev    next >
C/C++ Source or Header  |  1987-09-27  |  138b  |  14 lines

  1. /*
  2.    wow.
  3.  
  4.    Copyright (C) 1987 The University of New Mexico
  5. */
  6.  
  7. #include "defs.h"
  8.  
  9. yyerror(s)
  10. char *s;
  11. {
  12.     fprintf(stderr,"%s\n", s);
  13. }
  14.