diff options
author | 2013-08-07 15:56:03 +0000 | |
---|---|---|
committer | 2013-08-07 15:56:03 +0000 | |
commit | a47a35a3ae52ccabae7a56f021f20f37896d2f4d (patch) | |
tree | 2253d0523948c3d35cbf8b09c92c786b6a0eaaab | |
parent | We uniformly define size_t to be unsigned long and ssize_t to be long. Make (diff) | |
download | wireguard-openbsd-a47a35a3ae52ccabae7a56f021f20f37896d2f4d.tar.xz wireguard-openbsd-a47a35a3ae52ccabae7a56f021f20f37896d2f4d.zip |
needs timeout.h to compile. from Rafael Neves
-rw-r--r-- | sys/dev/usb/ubt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ubt.c b/sys/dev/usb/ubt.c index 7b401cfca2e..fa0a9d620aa 100644 --- a/sys/dev/usb/ubt.c +++ b/sys/dev/usb/ubt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ubt.c,v 1.23 2013/04/15 09:23:02 mglocker Exp $ */ +/* $OpenBSD: ubt.c,v 1.24 2013/08/07 15:56:03 tedu Exp $ */ /* $NetBSD: ubt.c,v 1.35 2008/07/28 14:19:26 drochner Exp $ */ /*- @@ -74,6 +74,7 @@ #include <sys/malloc.h> #include <sys/mbuf.h> #include <sys/systm.h> +#include <sys/timeout.h> #include <dev/usb/usb.h> #include <dev/usb/usbdi.h> |