scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit a63a49c2947aff8282f161ebcf30e64103f505a1
parent dd6884c032347d7673c62ea7c85abef7a10a2680
Author: Quentin Carbonneaux <quentin@c9x.me>
Date:   Sun, 11 Dec 2016 21:14:56 -0500

[cc1] Update void main() diagnostic

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

diff --git a/cc1/decl.c b/cc1/decl.c @@ -775,7 +775,7 @@ identifier(struct decl *dcl) sym = install(NS_IDEN, sym); ++curctx; if (!strcmp(name, "main") && tp->type != inttype) - errorp("please contact __20h__ on irc.oftc.net (#suckless) via IRC"); + errorp("please contact __20h__ on irc.freenode.net (#bitreich-en) via IRC"); } if (sym == NULL) {