home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / Watcher / yyerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-15  |  353 b   |  20 lines

  1. /*
  2.    yyerror: print out the errors for the parser.  To be helpful,
  3.    we print the line number in the control file where the
  4.    problem occurred.
  5.  
  6.    Kenneth Ingham
  7.  
  8.    Copyright (C) 1987 The University of New Mexico
  9. */
  10.  
  11. #include "defs.h"
  12.  
  13. yyerror(s)
  14. char *s;
  15. {
  16.     extern int control_line;
  17.  
  18.     fprintf(stderr,"%s on or near line %d\n", s, control_line);
  19. }
  20.