Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 2 | mjames | 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 | } |