diff options
author | Pete Batard <pbatard@gmail.com> | 2010-01-14 15:50:39 +0000 |
---|---|---|
committer | Pete Batard <pbatard@gmail.com> | 2010-01-14 15:50:39 +0000 |
commit | 1626ee00424d3f9b90db1b9fc3834cfbbadda465 (patch) | |
tree | e78097169c61f5df0b385980e4b1ca688ba44183 | |
parent | 40e8e4185a1b81478c8fff040753aab4efb4bbf1 (diff) | |
download | libusb-1626ee00424d3f9b90db1b9fc3834cfbbadda465.tar.gz |
r75: fixed missing <stdarg.h> include in xusb.c for UNIX platforms
-rw-r--r-- | examples/xusb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/xusb.c b/examples/xusb.c index 5542caf..3167d98 100644 --- a/examples/xusb.c +++ b/examples/xusb.c @@ -29,6 +29,7 @@ #include <sys/types.h> #include <inttypes.h> #include <string.h> +#include <stdarg.h> #include <libusb/libusb.h> |