scc

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

commit 60a4de52899761108d591026e627755c77505430
parent 2d264fd32692857eb640cd392d7046b8da522613
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun, 12 Jan 2025 16:35:34 +0100

make: Small stellystic changes

Diffstat:
Msrc/cmd/scc-make/rules.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cmd/scc-make/rules.c b/src/cmd/scc-make/rules.c @@ -548,7 +548,7 @@ rebuild(Target *tp, int *buildp) int build(char *name) { - int build, r;; + int build, r; if (!name) { if (!deftarget) { @@ -561,5 +561,5 @@ build(char *name) debug("checking target %s", name); build = 0; - return rebuild(lookup(name), &build); + return rebuild(lookup(name), &build); }