diff options
author | das <das@FreeBSD.org> | 2004-11-27 06:51:39 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2004-11-27 06:51:39 +0000 |
commit | 130bed654798f5974ea1b814996c1b960dc03919 (patch) | |
tree | ee0da1ed6777c64e0cd28bc317983024127c0118 /usr.bin | |
parent | 0b21c939c0a54cb34f0810d1353e74009ad7176a (diff) | |
download | FreeBSD-src-130bed654798f5974ea1b814996c1b960dc03919.zip FreeBSD-src-130bed654798f5974ea1b814996c1b960dc03919.tar.gz |
Don't include sys/user.h merely for its side-effect of recursively
including other headers.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ktrace/subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ktrace/subr.c b/usr.bin/ktrace/subr.c index 5b8b64d..01d7b43 100644 --- a/usr.bin/ktrace/subr.c +++ b/usr.bin/ktrace/subr.c @@ -42,9 +42,9 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/file.h> -#include <sys/user.h> #include <sys/proc.h> #include <sys/time.h> +#include <sys/uio.h> #include <sys/ktrace.h> #include <stdio.h> |