ref: 09ca91a889f294f7cc61677ac57c16d8303248f2
parent: 184510ee208d5f05b4f472d9ce295ecff044861d
author: Roberto E. Vargas Caballero <[email protected]>
date: Wed Sep 10 18:42:51 EDT 2014
Ignore blank lines in cc2
--- a/cc2/parser.c
+++ b/cc2/parser.c
@@ -472,6 +472,8 @@
break;
case EOF:
goto found_eof;
+ case '\n':
+ continue;
default:
goto syntax_error;
}