| 90 | } |
| 91 | |
| 92 | void syntax_error(int lineno, char *line, char *cptr) { |
| 93 | error(lineno, line, cptr, "syntax error"); |
| 94 | exit(1); |
| 95 | } |
| 96 | |
| 97 | void unterminated_comment(int lineno, char *line, char *cptr) { |
| 98 | error(lineno, line, cptr, "unmatched /*"); |
no test coverage detected