scc

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

commit 75f3f829eaa2e72575b9e5c802b290a17d837e54
parent 27e13dac39adc371f8bdf5f36e3bb3962aaea004
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed,  1 Jun 2022 14:20:17 +0200

cc1: Remove incorrect comment

%.*s is C99.

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

diff --git a/src/cmd/cc/cc1/lex.c b/src/cmd/cc/cc1/lex.c @@ -92,7 +92,6 @@ addinput(int type, void *arg, int fail) infileln = strlen(infile); if (extp = strrchr(infile, '.')) infileln -= strlen(extp); - /* TODO: is this C99? */ printf("%.*s.o: %s %s\n", infileln, infile, infile, fname); }