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 libusb/usb.h | 2 ++ 13 1 file changed, 2 insertions(+) 14 15diff --git a/libusb/usb.h b/libusb/usb.h 16index ea62543..18b610a 100644 17--- a/libusb/usb.h 18+++ b/libusb/usb.h 19@@ -46,6 +46,8 @@ typedef unsigned __int32 uint32_t; 20 #include <stdint.h> 21 #endif 22 23+#include <sys/types.h> 24+ 25 /* On linux PATH_MAX is defined in linux/limits.h. */ 26 #if defined(__linux__) 27 #include <linux/limits.h> 28-- 292.34.1 30 31