diff options
author | Hans Petter Selasky <hselasky@FreeBSD.org> | 2013-03-13 12:23:14 +0000 |
---|---|---|
committer | Hans Petter Selasky <hselasky@FreeBSD.org> | 2013-03-13 12:23:14 +0000 |
commit | 6619413096ca2cd63cdd45b422edaa6921aa39e3 (patch) | |
tree | 4cb297d97b46e9075c87640bb84c7ec92616125a /lib/libusb/libusb10_io.c | |
parent | 2ec88e9d1bcc5eabc01e8524c586254d8c012c3b (diff) | |
download | src-6619413096ca2cd63cdd45b422edaa6921aa39e3.tar.gz src-6619413096ca2cd63cdd45b422edaa6921aa39e3.zip |
- 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.
Notes
Notes:
svn path=/head/; revision=248236
Diffstat (limited to 'lib/libusb/libusb10_io.c')
-rw-r--r-- | lib/libusb/libusb10_io.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libusb/libusb10_io.c b/lib/libusb/libusb10_io.c index 302fdb8dda32..489ceb76caed 100644 --- a/lib/libusb/libusb10_io.c +++ b/lib/libusb/libusb10_io.c @@ -24,15 +24,20 @@ * SUCH DAMAGE. */ -#include <sys/queue.h> - +#ifdef LIBUSB_GLOBAL_INCLUDE_FILE +#include LIBUSB_GLOBAL_INCLUDE_FILE +#else #include <errno.h> #include <poll.h> #include <pthread.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <time.h> #include <unistd.h> +#include <sys/queue.h> +#include <sys/endian.h> +#endif #define libusb_device_handle libusb20_device |