diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2022-02-22 17:35:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2022-02-22 17:35:02 +0000 |
commit | 9d5266520f0a4832e2735871cfeeb25a0eb3c0dd (patch) | |
tree | c2da054491f3cf828713c60991d3349dbfe2260e /usr.bin/ktrace | |
parent | f2770b31653900954d03d0c6bb4d595a73921e73 (diff) |
MAXCOMLEN is no longer needed in these programs, so remove the annotation
from sys/param.h include lines, or remove the include lines entirely if
it this was the least requirement.
ok millert
Diffstat (limited to 'usr.bin/ktrace')
-rw-r--r-- | usr.bin/ktrace/ktrace.c | 3 | ||||
-rw-r--r-- | usr.bin/ktrace/subr.c | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/ktrace/ktrace.c b/usr.bin/ktrace/ktrace.c index 56fb8da6a19..8a4db886672 100644 --- a/usr.bin/ktrace/ktrace.c +++ b/usr.bin/ktrace/ktrace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ktrace.c,v 1.38 2021/09/01 15:54:40 deraadt Exp $ */ +/* $OpenBSD: ktrace.c,v 1.39 2022/02/22 17:35:01 deraadt Exp $ */ /* $NetBSD: ktrace.c,v 1.4 1995/08/31 23:01:44 jtc Exp $ */ /*- @@ -30,7 +30,6 @@ * SUCH DAMAGE. */ -#include <sys/param.h> /* MAXCOMLEN */ #include <sys/types.h> #include <sys/signal.h> #include <sys/stat.h> diff --git a/usr.bin/ktrace/subr.c b/usr.bin/ktrace/subr.c index cfc23041cd0..0c5159781ca 100644 --- a/usr.bin/ktrace/subr.c +++ b/usr.bin/ktrace/subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr.c,v 1.15 2021/09/01 15:54:40 deraadt Exp $ */ +/* $OpenBSD: subr.c,v 1.16 2022/02/22 17:35:01 deraadt Exp $ */ /* $NetBSD: subr.c,v 1.6 1995/08/31 23:01:45 jtc Exp $ */ /*- @@ -30,7 +30,7 @@ * SUCH DAMAGE. */ -#include <sys/param.h> /* MAXCOMLEN */ +#include <sys/types.h> #include <sys/time.h> #include <sys/signal.h> #include <sys/ktrace.h> |