From 91f7db5b4de3c984d84206902b5486183a075607 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 20 May 2019 22:10:05 -0700 Subject: [PATCH] usbbus: Include stdint.h for uintX_t stdint.h is needed for uintX_t typedefs which are used to replace u_intX_t in libusb API headers in the cmake files Signed-off-by: Khem Raj --- libnfc/buses/usbbus.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libnfc/buses/usbbus.h b/libnfc/buses/usbbus.h index 87f6a85..3c0381a 100644 --- a/libnfc/buses/usbbus.h +++ b/libnfc/buses/usbbus.h @@ -35,6 +35,7 @@ #ifndef _WIN32 // Under POSIX system, we use libusb (>= 0.1.12) +#include #include #define USB_TIMEDOUT ETIMEDOUT #define _usb_strerror( X ) strerror(-X)