8
0
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:
dimitr 2006-07-25 11:09:44 +00:00
parent f10559fb62
commit c0a39d7f4d

View File

@ -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";