mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 02:03:04 +01:00
And one more patch. This one doesn't substitute #include <standard header> with its body.
This commit is contained in:
parent
f10559fb62
commit
c0a39d7f4d
@ -29,6 +29,11 @@ void ProcessFile(FILE *in, bool stripFirstComment)
|
||||
fputs(s, stdout);
|
||||
continue;
|
||||
}
|
||||
char *p = strchr(s, '<');
|
||||
if (p) {
|
||||
fputs(s, stdout);
|
||||
continue;
|
||||
}
|
||||
char *p = strchr(s, '"');
|
||||
if (! p) {
|
||||
throw "#include misses \" - start of filename";
|
||||
|
Loading…
Reference in New Issue
Block a user