Subversion Repositories Vertical

Rev

Rev 2 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5.  
  6. #include "expression.h"
  7. #include "generic.h"
  8. #include "database.h"
  9. #include "printout.h"
  10. #include "routing.h"
  11. #include "cmdparse.h"
  12. #include "cmdlog.h"
  13.  
  14. #include "yywrap.h"
  15.  
  16. extern int lineno;
  17.  
  18. extern int include_stack_ptr;
  19.  
  20. int yywrap(void)
  21.   {
  22.   Log(LOG_GENERAL,"# (line %d) Finished reading\n",lineno);
  23. /*
  24.    lineno = 0;
  25.    errorseen = 0;
  26. */
  27.   return 1;
  28.   }
  29.  
  30.