libusbhid: add missing include guards

PR:		265136
This commit is contained in:
Andreas Kempe 2022-07-10 22:51:48 +02:00 committed by Ed Maste
parent dc3ee89c86
commit 230efeda08

View file

@ -29,6 +29,9 @@
*
*/
#ifndef _USBHID_H_
#define _USBHID_H_
#include <stdint.h>
typedef struct report_desc *report_desc_t;
@ -111,3 +114,5 @@ int hid_set_report(int fd, enum hid_kind k,
unsigned char *data, unsigned int size);
__END_DECLS
#endif /* !_USBHID_H_ */