Surround header with include guards to protect against multiple inclusion. Signed-off-by: Krzysztof Opasiak <k.opasiak@xxxxxxxxxxx> --- include/usbg/usbg.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/usbg/usbg.h b/include/usbg/usbg.h index 319cc1e..d2c9f0c 100644 --- a/include/usbg/usbg.h +++ b/include/usbg/usbg.h @@ -14,6 +14,9 @@ * Lesser General Public License for more details. */ +#ifndef __USBG_H__ +#define __USBG_H__ + #include <dirent.h> #include <sys/queue.h> #include <netinet/ether.h> @@ -439,3 +442,4 @@ extern void usbg_set_net_qmult(struct function *f, int qmult); /** * @} */ +#endif /* __USBG_H__ */ -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html