diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-06-13 07:38:48 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-06-13 07:38:48 +0000 |
commit | b0c6ae26fdff6d337b88ed8152990a6cbb73f08d (patch) | |
tree | ed9a1114bab9aefaeefa112ef5fc6f681518d7aa /sys/arch/vax/include | |
parent | cfd10c7ea89fe79ab87beea7696fd943fa25fea1 (diff) |
Recent changes in sys/netinet/ assume you get setsoftnet() via
<machine/param.h>, which was not the case for these arches.
Diffstat (limited to 'sys/arch/vax/include')
-rw-r--r-- | sys/arch/vax/include/param.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index e58ff558805..725ad0229ce 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.17 2001/05/13 02:37:30 millert Exp $ */ +/* $OpenBSD: param.h,v 1.18 2001/06/13 07:38:47 miod Exp $ */ /* $NetBSD: param.h,v 1.39 1999/10/22 21:14:34 ragge Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -211,6 +211,8 @@ /* Prototype needed for delay() */ #ifndef _LOCORE +#include <machine/cpu.h> + void delay __P((int)); /* inline macros used inside kernel */ #include <machine/macros.h> |