scc

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

commit 8883afdeef8fe0d485fd7f14cb3246c7aa96ebc1
parent 78517784dbcc4232bdd71df3365437b6174ab717
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Fri, 18 Sep 2015 13:20:54 -0400

Improve error reporting

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

diff --git a/cc1/decl.c b/cc1/decl.c @@ -585,7 +585,7 @@ identifier(struct decl *dcl) sym = install(NS_IDEN, sym); ++curctx; if (!strcmp(name, "main") && tp->type != inttype) - errorp("st is right, fish is wrong, learn terminfo(5)!"); + errorp("please contact __20h__ on irc.oftc.net (#suckless) via IRC"); } else { sym = install(NS_IDEN, sym); }