From owner-freebsd-bugs Tue Feb 10 21:10:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA20919 for freebsd-bugs-outgoing; Tue, 10 Feb 1998 21:10:27 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA20884; Tue, 10 Feb 1998 21:10:22 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA20049; Tue, 10 Feb 1998 21:07:21 -0800 (PST) (envelope-from nobody) Message-Id: <199802110507.VAA20049@hub.freebsd.org> Date: Tue, 10 Feb 1998 21:07:21 -0800 (PST) From: jason_smethers@bigfoot.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: bin/5713: /bin/echo code cleanup Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5713 >Category: bin >Synopsis: /bin/echo code cleanup >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 10 21:10:17 PST 1998 >Last-Modified: >Originator: Jason Smethers >Organization: >Release: 3.0-Current >Environment: FreeBSD p90unix.vipersystems.com 3.0-CURRENT FreeBSD 3.0-CURRENT #1: Sun Feb 8 17:26:35 CST 1998 root@p90unix.vipersystems.com:/usr/src/sys/compile/P90UNIX i386 >Description: Gerneral code cleanup. >How-To-Repeat: >Fix: diff -c -r /usr/src/bin/echo/echo.c /usr/local/src/bin/echo/echo.c *** /usr/src/bin/echo/echo.c Sat Feb 22 08:03:05 1997 --- /usr/local/src/bin/echo/echo.c Mon Feb 9 20:20:11 1998 *************** *** 47,52 **** --- 47,54 ---- #include #include + int main __P((int, char *[])); + int main(argc, argv) int argc; *************** *** 71,79 **** } (void)printf("%s", argv[0]); if (*++argv) ! putchar(' '); } if (!nflag) ! putchar('\n'); exit(0); } --- 73,81 ---- } (void)printf("%s", argv[0]); if (*++argv) ! (void)putchar(' '); } if (!nflag) ! (void)putchar('\n'); exit(0); } >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message