Use __FBSDID(). remove WARNS=2 as this is going to be default.

This commit is contained in:
Mark Murray 2001-12-11 22:25:43 +00:00
parent 7a8fb588c7
commit d46847c026
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87677
2 changed files with 6 additions and 7 deletions

View File

@ -2,6 +2,5 @@
# $FreeBSD$
PROG= what
WARNS?= 2
.include <bsd.prog.mk>

View File

@ -31,19 +31,19 @@
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1980, 1988, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#endif
#ifndef lint
#if 0
static char sccsid[] = "@(#)what.c 8.1 (Berkeley) 6/6/93";
static const char sccsid[] = "@(#)what.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <err.h>
#include <stdio.h>