Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 2 | mjames | 1 | |
| 11 | mjames | 2 | #include <stdio.h> |
| 3 | #include <string.h> |
||
| 4 | #include <stdlib.h> |
||
| 2 | mjames | 5 | |
| 6 | #include "expression.h" |
||
| 7 | #include "generic.h" |
||
| 11 | mjames | 8 | #include "database.h" |
| 2 | mjames | 9 | #include "printout.h" |
| 10 | #include "routing.h" |
||
| 11 | mjames | 11 | #include "cmdparse.h" |
| 12 | #include "cmdlog.h" |
||
| 2 | mjames | 13 | |
| 11 | mjames | 14 | #include "yywrap.h" |
| 2 | mjames | 15 | |
| 16 | extern int lineno; |
||
| 17 | |||
| 11 | mjames | 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 |