home *** CD-ROM | disk | FTP | other *** search
/ ftptest.leeds.ac.uk / 2015.02.ftptest.leeds.ac.uk.tar / ftptest.leeds.ac.uk / bionet / CAE-GROUP / SCL-WIN3x / FED_PLUS.EXE / YYVARS.C < prev   
Text File  |  1994-07-21  |  563b  |  30 lines

  1. static char rcsid[] = "$Id: yyvars.c,v 1.1 1994/05/11 21:36:48 libes Exp $";
  2.  
  3. /*
  4.  * $Log: yyvars.c,v $
  5.  * Revision 1.1  1994/05/11  21:36:48  libes
  6.  * Initial revision
  7.  *
  8.  * Revision 1.0.1.1  1992/01/23  03:28:00  libes
  9.  * copied from ~pdes
  10.  *
  11.  * Revision 1.2  1990/09/06  10:59:06  clark
  12.  * BPR 2.1 beta
  13.  *
  14.  * Revision 1.1  90/06/11  16:30:22  clark
  15.  * Initial revision
  16.  * 
  17.  */
  18.  
  19. #include <stdio.h>
  20.  
  21. FILE *yyin = {stdin}, *yyout = {stdout};
  22. int yylineno = 1;
  23. int yynerrs;        /* total errors */
  24. void
  25. yynewparse()
  26. {
  27.     yylineno = 1;
  28. }
  29. 
  30.