scc

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

commit ac8455c287b0178649255acd37a63e938ef36d75
parent 2b69b9c506ebf23351fa26f6c30e79fcc2d256c0
Author: Quentin Rameau <quinq@fifth.space>
Date:   Tue, 14 Feb 2017 16:38:54 +0100

[driver] Parse -Wfoo as -w

Diffstat:
Mdriver/posix/scc.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/driver/posix/scc.c b/driver/posix/scc.c @@ -476,6 +476,8 @@ main(int argc, char *argv[]) case 's': sflag = 1; break; + case 'W': + EARGF(usage()); case 'w': addarg(CC1, "-w"); break;