Subversion Repositories Vertical

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

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