diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-03-06 23:51:05 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2014-03-06 23:51:05 +0000 |
commit | 4ba75e622b750f080153d58dc236f862a14e2eb7 (patch) | |
tree | 041467f83e34073a6ca35b6ec2e158aa64b0a926 /sys/dev/usb/usbdivar.h | |
parent | 2c2a2223932e1b995d9c56d1265be52f99665f6b (diff) |
Add include guards.
Diffstat (limited to 'sys/dev/usb/usbdivar.h')
-rw-r--r-- | sys/dev/usb/usbdivar.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/usb/usbdivar.h b/sys/dev/usb/usbdivar.h index 19546697e19..f099a2cac1f 100644 --- a/sys/dev/usb/usbdivar.h +++ b/sys/dev/usb/usbdivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: usbdivar.h,v 1.53 2013/11/01 12:00:54 mpi Exp $ */ +/* $OpenBSD: usbdivar.h,v 1.54 2014/03/06 23:51:04 mpi Exp $ */ /* $NetBSD: usbdivar.h,v 1.70 2002/07/11 21:14:36 augustss Exp $ */ /* $FreeBSD: src/sys/dev/usb/usbdivar.h,v 1.11 1999/11/17 22:33:51 n_hibma Exp $ */ @@ -32,6 +32,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#ifndef _USBDIVAR_H_ +#define _USBDIVAR_H_ + #include <sys/timeout.h> /* From usb_mem.h */ @@ -278,3 +281,5 @@ void usb_schedsoftintr(struct usbd_bus *); #define UHUB_UNK_VENDOR UHUBCF_VENDOR_DEFAULT /* wildcarded 'vendor' */ #define UHUB_UNK_PRODUCT UHUBCF_PRODUCT_DEFAULT /* wildcarded 'product' */ #define UHUB_UNK_RELEASE UHUBCF_RELEASE_DEFAULT /* wildcarded 'release' */ + +#endif /* _USBDIVAR_H_ */ |