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/libusb20_ugen20.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/libusb20_ugen20.c')
-rw-r--r-- | lib/libusb/libusb20_ugen20.c | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/lib/libusb/libusb20_ugen20.c b/lib/libusb/libusb20_ugen20.c index bff8e02e7c26..0846eb4b7d52 100644 --- a/lib/libusb/libusb20_ugen20.c +++ b/lib/libusb/libusb20_ugen20.c @@ -24,24 +24,28 @@ * SUCH DAMAGE. */ -#include <sys/queue.h> -#include <sys/types.h> - +#ifdef LIBUSB_GLOBAL_INCLUDE_FILE +#include LIBUSB_GLOBAL_INCLUDE_FILE +#else #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> - -#include "libusb20.h" -#include "libusb20_desc.h" -#include "libusb20_int.h" +#include <time.h> +#include <sys/queue.h> +#include <sys/types.h> +#endif #include <dev/usb/usb.h> #include <dev/usb/usbdi.h> #include <dev/usb/usb_ioctl.h> +#include "libusb20.h" +#include "libusb20_desc.h" +#include "libusb20_int.h" + static libusb20_init_backend_t ugen20_init_backend; static libusb20_open_device_t ugen20_open_device; static libusb20_close_device_t ugen20_close_device; |