scc

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

commit 20934ed2f01b5ff6cb1c2398e988adc27fd34b2f
parent 56ea4689075ce1b6005b08b2b87b9b7e4a52cfba
Author: Xavier Del Campo Romero <xavi.dcr@tutanota.com>
Date:   Mon,  6 Jun 2022 15:34:32 +0200

cc1: remove redundant semicolon

Diffstat:
Msrc/cmd/cc/cc1/lex.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/cc/cc1/lex.c b/src/cmd/cc/cc1/lex.c @@ -52,7 +52,7 @@ int addinput(int type, void *arg, int fail) { FILE *fp; - char *extp, *fname, *buffer, *infile;; + char *extp, *fname, *buffer, *infile; int infileln; Macro *mp; Symbol *sym;