scc

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

commit fc1e7dfabe08378fbe519ea8885e836f685c984a
parent d9c2814c687ef15992a986941d818962359e3b7b
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 27 Jun 2015 10:54:42 +0200

Style change

Diffstat:
Mcc1/cpp.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc1/cpp.c b/cc1/cpp.c @@ -545,7 +545,7 @@ ifclause(char *s, int isdef) } if (!iden(&s)) { printerr("no macro name given in #%s directive", - (isdef) ? "ifdef" : "ifndef"); + (isdef) ? "ifdef" : "ifndef"); return; } sym = lookup(NS_CPP);