scc

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

commit 1083fc50f098b2ad5b40244b16a6b351c44e2b3f
parent 5b5f0fb6e9675bd768af2c3c90b8a0cbc94bf0fb
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed, 25 Jan 2017 16:14:47 +0100

[cc1] fix tool name in usage()

Adding an arch suffix was a bad idea because the object is common to all
arch, and putting usage() into arch.c would have been ugly.

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

diff --git a/cc1/main.c b/cc1/main.c @@ -44,7 +44,7 @@ defmacro(char *macro) static void usage(void) { - die("usage: cc1-" ARCH " [-Ewd] [-D def[=val]]... [-U def]... " + die("usage: cc1 [-Ewd] [-D def[=val]]... [-U def]... " "[-I dir]... [-o output] [input]"); }