summaryrefslogtreecommitdiffstats
path: root/lib/libusb/libusb01.c
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2013-03-13 12:23:14 +0000
committerhselasky <hselasky@FreeBSD.org>2013-03-13 12:23:14 +0000
commit0b8d7927213de8679fda3f58d460b754fe2f65f0 (patch)
tree4cb297d97b46e9075c87640bb84c7ec92616125a /lib/libusb/libusb01.c
parent1e99f9b1455315f445d71a02aa21482c6507b87a (diff)
downloadFreeBSD-src-0b8d7927213de8679fda3f58d460b754fe2f65f0.zip
FreeBSD-src-0b8d7927213de8679fda3f58d460b754fe2f65f0.tar.gz
- Make the FreeBSD's USB library compile under Linux.
- Fix a compile warning where the return value of a call to a write() function was ignored. - Remove redundant include files from userland USB header files. - Add some now needed include files to various C-files.
Diffstat (limited to 'lib/libusb/libusb01.c')
-rw-r--r--lib/libusb/libusb01.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libusb/libusb01.c b/lib/libusb/libusb01.c
index 17edb0e..30a1430 100644
--- a/lib/libusb/libusb01.c
+++ b/lib/libusb/libusb01.c
@@ -28,11 +28,16 @@
* This file contains the emulation layer for LibUSB v0.1 from sourceforge.
*/
-#include <sys/queue.h>
-
+#ifdef LIBUSB_GLOBAL_INCLUDE_FILE
+#include LIBUSB_GLOBAL_INCLUDE_FILE
+#else
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+#include <sys/queue.h>
+#endif
#include "libusb20.h"
#include "libusb20_desc.h"
OpenPOWER on IntegriCloud