Commit 1eaa657f by Klaus Kaempf Committed by Jeff Law

cccp.c (do_include): Fix vax c style include handling.

8
        * cccp.c (do_include): Fix vax c style include handling.

From-SVN: r21330
parent 244058f7
......@@ -4547,7 +4547,7 @@ get_filename:
*/
/* Note: The argument of ISALPHA() can be evaluated twice, so do
the pre-decrement outside of the macro. */
if (retried && (--fbeg, ISALPHA(*(U_CHAR *) (fbeg)))) {
if (retried && (--fin, ISALPHA(*(U_CHAR *) (fin)))) {
while (fin != limit && (!ISSPACE(*fin)))
*fend++ = *fin++;
warning ("VAX-C-style include specification found, use '#include <filename.h>' !");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment