scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 09ca91a889f294f7cc61677ac57c16d8303248f2
parent 184510ee208d5f05b4f472d9ce295ecff044861d
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed, 10 Sep 2014 22:42:51 +0200

Ignore blank lines in cc2

Diffstat:
Mcc2/parser.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/cc2/parser.c b/cc2/parser.c @@ -472,6 +472,8 @@ parse(void) break; case EOF: goto found_eof; + case '\n': + continue; default: goto syntax_error; }