diff options
author | jkh <jkh@FreeBSD.org> | 1996-05-01 06:31:18 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-05-01 06:31:18 +0000 |
commit | aa76d4da80b5199be3cafedd3d940987a911966d (patch) | |
tree | 970cfdcd5751ed84b65d412633d89636b1f8abe0 /sys/alpha | |
parent | 13cbb1411ca7e121c8b81130a8c2fb3df6b4023c (diff) | |
download | FreeBSD-src-aa76d4da80b5199be3cafedd3d940987a911966d.zip FreeBSD-src-aa76d4da80b5199be3cafedd3d940987a911966d.tar.gz |
Include <sys/buf.h> so that this does't blow up with B_WRITE undefined.
I fully updated my src tree and did a `make includes' in /usr/src before
trying this fix, so I can only presume that Bruce missed something.
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/linux/linux_sysvec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index 9a9f338..0630156 100644 --- a/sys/alpha/linux/linux_sysvec.c +++ b/sys/alpha/linux/linux_sysvec.c @@ -25,13 +25,14 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_sysvec.c,v 1.3 1996/03/10 22:42:16 peter Exp $ + * $Id: linux_sysvec.c,v 1.4 1996/03/17 14:31:58 peter Exp $ */ /* XXX we use functions that might not exist. */ #define COMPAT_43 1 #include <sys/param.h> +#include <sys/buf.h> #include <sys/systm.h> #include <sys/sysproto.h> #include <sys/sysent.h> |