Warnc cleanups. Add FreeBSD IDs.

This commit is contained in:
David Malone 2001-12-03 21:15:40 +00:00
parent 054bbc7bc3
commit 73f631edfa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87294
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,8 @@
# $FreeBSD$
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= printenv
MLINKS= printenv.1 env.1
WARNS?= 2
.include <bsd.prog.mk>

View File

@ -31,14 +31,18 @@
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint
static char copyright[] =
static const char copyright[] =
"@(#) Copyright (c) 1987, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
static char sccsid[] = "@(#)printenv.c 8.2 (Berkeley) 5/4/95";
static const char sccsid[] = "@(#)printenv.c 8.2 (Berkeley) 5/4/95";
#endif /* not lint */
#include <sys/types.h>