Lukas Fleischer <git@xxxxxxxxxxxxxx> writes: > On Mon, Aug 26, 2013 at 02:29:12PM -0600, Lance wrote: >> [...] >> >> CC config.o >> >>config.c: In function 'get_next_char': >> >>config.c:220:14: error: expected identifier before '(' token >> >>config.c:220:14: error: expected statement before ')' token >> >>config.c:220:14: error: expected statement before ')' token >> >>config.c:224:11: error: expected identifier before '(' token >> >Does changing line 220 of config.c to >> > >> > int c = (cf->fgetc)(cf); >> > >> >fix it? >> I also had to change line 224 to the following >> >> c = (cf->fgetc)(cf); >> >> Once both places were changes, it compiled successfully. > > Sounds like a parser bug to me. No, it isn't. fgetc may be a function-like macro that expands to an arbitrary expression (same for ungetc or ftell, or any other indentifier that matches a C library function, for that matter). Andreas. -- Andreas Schwab, schwab@xxxxxxxxxxxxxx GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html