diff options
author | 2001-09-16 22:40:10 +0000 | |
---|---|---|
committer | 2001-09-16 22:40:10 +0000 | |
commit | 0e7ade45f6fbbd8eb0fab73f9f785922d2b97b1a (patch) | |
tree | 707b355452bfc3874b8d64121d9159a1f343b28d /usr.bin/nice/nice.c | |
parent | special-case MACRO (without parens) recognition, so that $# is set to 0 (diff) | |
download | wireguard-openbsd-0e7ade45f6fbbd8eb0fab73f9f785922d2b97b1a.tar.xz wireguard-openbsd-0e7ade45f6fbbd8eb0fab73f9f785922d2b97b1a.zip |
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> |