libusbhid: add missing include guards

PR:		265136

(cherry picked from commit 230efeda08)
(cherry picked from commit 7f0392e1c8)
This commit is contained in:
Andreas Kempe 2022-07-10 22:51:48 +02:00 committed by Ed Maste
parent 12ea2d04c3
commit b1e82630b4

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_ */