Warns cleanup. Add FreeBSD ID to Makefile and nice.c.

This commit is contained in:
David Malone 2001-12-03 21:10:47 +00:00
parent 9ff5e898db
commit ae1a490de6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=87291
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,7 @@
# $FreeBSD$
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= nice
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) 1989, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
static char sccsid[] = "@(#)nice.c 8.2 (Berkeley) 4/16/94";
static const char sccsid[] = "@(#)nice.c 8.2 (Berkeley) 4/16/94";
#endif /* not lint */
#include <sys/types.h>