diff options
author | steve <steve@FreeBSD.org> | 1996-12-14 06:08:03 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1996-12-14 06:08:03 +0000 |
commit | c5d0f9cb3928db35413db774a96dc2a8eb85b141 (patch) | |
tree | 2f12bbee87f3b5e7477f863c11ba6545497513ad /bin/echo | |
parent | 0aef04187c65f5b7c84d848d3becef7ee602a9d9 (diff) | |
download | FreeBSD-src-c5d0f9cb3928db35413db774a96dc2a8eb85b141.zip FreeBSD-src-c5d0f9cb3928db35413db774a96dc2a8eb85b141.tar.gz |
-Wall cleaning.
Diffstat (limited to 'bin/echo')
-rw-r--r-- | bin/echo/echo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/echo/echo.c b/bin/echo/echo.c index e604765..28152aa 100644 --- a/bin/echo/echo.c +++ b/bin/echo/echo.c @@ -30,17 +30,17 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: echo.c,v 1.2 1994/09/24 02:55:18 davidg Exp $ + * $Id: echo.c,v 1.3 1995/08/31 17:25:55 jkh Exp $ */ #ifndef lint -static char copyright[] = +static char const copyright[] = "@(#) Copyright (c) 1989, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint -static char sccsid[] = "@(#)echo.c 8.1 (Berkeley) 5/31/93"; +static char const sccsid[] = "@(#)echo.c 8.1 (Berkeley) 5/31/93"; #endif /* not lint */ #include <stdio.h> |