From e0c895ac7a545edcf0032e8134ff41f8b1c238e4 Mon Sep 17 00:00:00 2001 From: Hiten Pandya Date: Mon, 26 Jul 2004 10:25:55 +0000 Subject: [PATCH] Aesthetic changes: * remove useless prototype for main() * lint(1) comments * add some whitespace between two lines Submitted-by: Liam J. Foy --- bin/echo/echo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/echo/echo.c b/bin/echo/echo.c index 5d5012e63d..79dd73b239 100644 --- a/bin/echo/echo.c +++ b/bin/echo/echo.c @@ -33,15 +33,14 @@ * @(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. * @(#)echo.c 8.1 (Berkeley) 5/31/93 * $FreeBSD: src/bin/echo/echo.c,v 1.8.2.1 2001/08/01 02:33:32 obrien Exp $ - * $DragonFly: src/bin/echo/echo.c,v 1.4 2003/09/28 14:39:14 hmp Exp $ + * $DragonFly: src/bin/echo/echo.c,v 1.5 2004/07/26 10:25:55 hmp Exp $ */ #include #include #include -int main (int, char *[]); - +/* ARGSUSED */ int main(int argc __unused, char **argv) { @@ -68,5 +67,6 @@ main(int argc __unused, char **argv) } if (!nflag) putchar('\n'); + exit(0); } -- 2.35.2