diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-09-16 22:40:11 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-09-16 22:40:11 +0000 |
commit | c04e200c21fd1e25d555f2108d1b9136828f683c (patch) | |
tree | 2c61ae0afc47a86bb080a43cce657c5c8bf5e1aa /usr.bin/nice/nice.c | |
parent | c4806cc6f1a53f8a85f381d1afdd1db58426dba9 (diff) |
remove some unneeded includes; ok millert
Diffstat (limited to 'usr.bin/nice/nice.c')
-rw-r--r-- | usr.bin/nice/nice.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/nice/nice.c b/usr.bin/nice/nice.c index c6a691be491..1b5cf7a5ba1 100644 --- a/usr.bin/nice/nice.c +++ b/usr.bin/nice/nice.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nice.c,v 1.4 2001/05/24 03:04:35 pvalchev Exp $ */ +/* $OpenBSD: nice.c,v 1.5 2001/09/16 22:40:10 pvalchev Exp $ */ /* $NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $ */ /* @@ -44,15 +44,13 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)nice.c 5.4 (Berkeley) 6/1/90"; #endif -static char rcsid[] = "$OpenBSD: nice.c,v 1.4 2001/05/24 03:04:35 pvalchev Exp $"; +static char rcsid[] = "$OpenBSD: nice.c,v 1.5 2001/09/16 22:40:10 pvalchev Exp $"; #endif /* not lint */ -#include <sys/types.h> #include <sys/time.h> #include <sys/resource.h> #include <stdio.h> #include <stdlib.h> -#include <string.h> #include <locale.h> #include <ctype.h> #include <errno.h> |