From owner-cvs-all Tue Oct 8 20:42:12 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8210E37B401; Tue, 8 Oct 2002 20:42:11 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C37E43E6E; Tue, 8 Oct 2002 20:42:11 -0700 (PDT) (envelope-from jmallett@FreeBSD.org) Received: from freefall.freebsd.org (jmallett@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g993gBCo016969; Tue, 8 Oct 2002 20:42:11 -0700 (PDT) (envelope-from jmallett@freefall.freebsd.org) Received: (from jmallett@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g993gBU3016968; Tue, 8 Oct 2002 20:42:11 -0700 (PDT) Message-Id: <200210090342.g993gBU3016968@freefall.freebsd.org> From: Juli Mallett Date: Tue, 8 Oct 2002 20:42:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c make.c parse.c str.c suff.c targ.c var.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmallett 2002/10/08 20:42:10 PDT Modified files: usr.bin/make arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c make.c parse.c str.c suff.c targ.c var.c Log: Convert make(1) to use ANSI style function declarations. Variable documentation already adequatedly existed in the description in most cases. Where it did not, it was added. If no documentation existed beforehand, then none was added. Some unused dummies for use in the traversal functions were marked as __unused during the conversion. Occasionally, local style fixes were applied to lines already being modified or influenced. Now make(1) should always build with WARNS=3. Revision Changes Path 1.32 +28 -48 src/usr.bin/make/arch.c 1.18 +13 -37 src/usr.bin/make/buf.c 1.34 +8 -14 src/usr.bin/make/compat.c 1.24 +16 -37 src/usr.bin/make/cond.c 1.30 +32 -62 src/usr.bin/make/dir.c 1.19 +3 -6 src/usr.bin/make/for.c 1.18 +13 -30 src/usr.bin/make/hash.c 1.45 +36 -84 src/usr.bin/make/job.c 1.78 +19 -37 src/usr.bin/make/main.c 1.23 +15 -34 src/usr.bin/make/make.c 1.48 +33 -67 src/usr.bin/make/parse.c 1.25 +10 -24 src/usr.bin/make/str.c 1.26 +43 -101 src/usr.bin/make/suff.c 1.25 +20 -44 src/usr.bin/make/targ.c 1.35 +51 -146 src/usr.bin/make/var.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message