Warns cleanups. Add FreeBSD ID to Makefile.

This commit is contained in:
David Malone 2001-12-03 21:03:39 +00:00
parent 4285ad09c9
commit fae4fbf838
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87287
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
# $FreeBSD$
# @(#)Makefile 8.1 (Berkeley) 6/9/93
PROG= logname
WARNS?= 2
.include <bsd.prog.mk>

View File

@ -34,13 +34,13 @@
*/
#ifndef lint
static char copyright[] =
static const char copyright[] =
"@(#) Copyright (c) 1991, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
static char sccsid[] = "@(#)logname.c 8.2 (Berkeley) 4/3/94";
static const char sccsid[] = "@(#)logname.c 8.2 (Berkeley) 4/3/94";
#endif /* not lint */
#include <err.h>
@ -55,7 +55,7 @@ void usage __P((void));
int
main(argc, argv)
int argc;
char *argv[];
char *argv[] __unused;
{
char *p;