diff options
author | hselasky <hselasky@FreeBSD.org> | 2013-01-30 10:59:42 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2013-01-30 10:59:42 +0000 |
commit | d2c9e405ba3a5efb5fd31f5f0c033cbb3058b2d9 (patch) | |
tree | 7188be57a7c21d417b9f9a4e31969e9daefcd30b | |
parent | fc7f8b7f99d1c48012774f9f202cd75cfa6c2516 (diff) | |
download | FreeBSD-src-d2c9e405ba3a5efb5fd31f5f0c033cbb3058b2d9.zip FreeBSD-src-d2c9e405ba3a5efb5fd31f5f0c033cbb3058b2d9.tar.gz |
Add missing header file inclusion guard.
-rw-r--r-- | sys/dev/usb/ufm_ioctl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/usb/ufm_ioctl.h b/sys/dev/usb/ufm_ioctl.h index 921b3d4..5a23388 100644 --- a/sys/dev/usb/ufm_ioctl.h +++ b/sys/dev/usb/ufm_ioctl.h @@ -1,3 +1,4 @@ +/* $FreeBSD$ */ /*- * Copyright (c) 2001 M. Warner Losh * All rights reserved. @@ -28,7 +29,8 @@ * its contributors. */ -/* $FreeBSD$ */ +#ifndef _UFM_IOCTL_H_ +#define _UFM_IOCTL_H_ #include <sys/ioccom.h> @@ -37,3 +39,5 @@ #define FM_START _IOWR('U', 202, int) #define FM_STOP _IOWR('U', 203, int) #define FM_GET_STAT _IOWR('U', 204, int) + +#endif /* _UFM_IOCTL_H_ */ |