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