diff options
author | phk <phk@FreeBSD.org> | 2000-10-29 14:54:55 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-10-29 14:54:55 +0000 |
commit | f82e4ca62c2bea6ce2d8c4f72263cb29a85f00b3 (patch) | |
tree | b1d0738da6383c4d7f36d17389b606eada8d11c4 /sys/isofs | |
parent | 38695be04c0d41b71e4ab0cb48afa0d2320cffbc (diff) | |
download | FreeBSD-src-f82e4ca62c2bea6ce2d8c4f72263cb29a85f00b3.zip FreeBSD-src-f82e4ca62c2bea6ce2d8c4f72263cb29a85f00b3.tar.gz |
Weaken a bogus dependency on <sys/proc.h> in <sys/buf.h> by #ifdef'ing
the offending inline function (BUF_KERNPROC) on it being #included
already.
I'm not sure BUF_KERNPROC() is even the right thing to do or in the
right place or implemented the right way (inline vs normal function).
Remove consequently unneeded #includes of <sys/proc.h>
Diffstat (limited to 'sys/isofs')
-rw-r--r-- | sys/isofs/cd9660/cd9660_node.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/isofs/cd9660/cd9660_node.c b/sys/isofs/cd9660/cd9660_node.c index 500a1a6..5074679 100644 --- a/sys/isofs/cd9660/cd9660_node.c +++ b/sys/isofs/cd9660/cd9660_node.c @@ -42,7 +42,6 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/mount.h> -#include <sys/proc.h> #include <sys/bio.h> #include <sys/buf.h> #include <sys/vnode.h> |