1From 840795dcb48214b74cfde75e7ce5e8a1a6c64a46 Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Thu, 2 Apr 2015 19:18:45 -0700 4Subject: [PATCH] usb.h: Include sys/types.h 5 6We need the definitions for things like u_intX_t 7 8Upstream-Status: Pending 9 10Signed-off-by: Khem Raj <raj.khem@gmail.com> 11 12--- 13 libusb/usb.h | 2 ++ 14 1 file changed, 2 insertions(+) 15 16diff --git a/libusb/usb.h b/libusb/usb.h 17index fa0e6c6..4e88eb8 100644 18--- a/libusb/usb.h 19+++ b/libusb/usb.h 20@@ -45,6 +45,8 @@ typedef unsigned __int32 uint32_t; 21 #include <stdint.h> 22 #endif 23 24+#include <sys/types.h> 25+ 26 /* 27 * USB spec information 28 * 29