diff options
author | msmith <msmith@FreeBSD.org> | 1999-08-21 22:10:49 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1999-08-21 22:10:49 +0000 |
commit | 0da24050bf099d1e4d5d58f656d4b2aaa082efa9 (patch) | |
tree | 22db1a3b7292b26dbd94492f934da7198720d087 /sys/dev/wi/if_wi.c | |
parent | f1ca67e0d8e4dc83d198e624bbbf8c52dedb309c (diff) | |
download | FreeBSD-src-0da24050bf099d1e4d5d58f656d4b2aaa082efa9.zip FreeBSD-src-0da24050bf099d1e4d5d58f656d4b2aaa082efa9.tar.gz |
Clean up after removing sys/eventhandler.h from sys/systm.h at the last
minute. This should cover all of the missed cases (and should let LINT
build again).
Diffstat (limited to 'sys/dev/wi/if_wi.c')
-rw-r--r-- | sys/dev/wi/if_wi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c index 5b6467f..0a92e80 100644 --- a/sys/dev/wi/if_wi.c +++ b/sys/dev/wi/if_wi.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_wi.c,v 1.8 1999/07/06 19:22:53 des Exp $ + * $Id: if_wi.c,v 1.9 1999/08/21 06:24:15 msmith Exp $ */ /* @@ -73,6 +73,7 @@ #include <sys/param.h> #include <sys/systm.h> +#include <sys/eventhandler.h> #include <sys/sockio.h> #include <sys/mbuf.h> #include <sys/malloc.h> @@ -116,7 +117,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: if_wi.c,v 1.8 1999/07/06 19:22:53 des Exp $"; + "$Id: if_wi.c,v 1.9 1999/08/21 06:24:15 msmith Exp $"; #endif static struct wi_softc wi_softc[NWI]; |