From owner-cvs-sys Sun Oct 6 09:30:38 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA27818 for cvs-sys-outgoing; Sun, 6 Oct 1996 09:30:38 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id JAA27783; Sun, 6 Oct 1996 09:30:24 -0700 (PDT) Date: Sun, 6 Oct 1996 09:30:24 -0700 (PDT) From: Bruce Evans Message-Id: <199610061630.JAA27783@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/i386/i386 userconfig.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/10/06 09:30:22 Modified: sys/i386/i386 userconfig.c Log: Fixed build of LINT yet again. getchar() clashed with getchar() in pcvt. Staticized it in userconfig. The one in pcvt is unused. Removed bogus unused arg to getchar(). This should not have compiled in the USERCONFIG_BOOT case, but the getchar() was also non-prototyped and defined in K&R style. Staticized the badly named global variable `next'. Even static variables should have a unique module-specific prefix so that they can be referenced easily in debuggers, etc. Revision Changes Path 1.56 +7 -6 src/sys/i386/i386/userconfig.c