From 7e7b1248d17763443f373cb779bffda883b36d51 Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Wed, 30 Jan 2013 10:59:42 +0000 Subject: [PATCH] Add missing header file inclusion guard. --- sys/dev/usb/ufm_ioctl.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/dev/usb/ufm_ioctl.h b/sys/dev/usb/ufm_ioctl.h index 921b3d4f37a7..5a233883546c 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 @@ -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_ */