Eliminate calls to abort()
Call Exit(EXIT_FAILURE) instead so that output files get removed.
This commit is contained in:
parent
55377bdc08
commit
735732d721
6 changed files with 35 additions and 52 deletions
|
|
@ -2055,8 +2055,7 @@ String *Preprocessor_parse(String *s) {
|
|||
break;
|
||||
default:
|
||||
Printf(stderr, "cpp: Invalid parser state %d\n", state);
|
||||
abort();
|
||||
break;
|
||||
Exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
while (level > 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue