summaryrefslogtreecommitdiff
path: root/examples/xusb.c
diff options
context:
space:
mode:
authorPete Batard <pbatard@gmail.com>2010-11-18 12:24:37 +0000
committerPete Batard <pbatard@gmail.com>2010-11-18 12:24:37 +0000
commit727bb1d499607694b66287618a85c8f3b44e9f30 (patch)
tree8a78276c61b95e09670a647bf0b171e5dfb65661 /examples/xusb.c
parentfa4cd28da39f2398d178ab4a1a55bfc8fba395d6 (diff)
downloadlibusb-727bb1d499607694b66287618a85c8f3b44e9f30.tar.gz
removed dependency on stdint.h for MS binary snapshot users
* binary snapshot users, with a version of Visual Studio < 10 don't have stdint.h available * stdint.h is referenced in libusb.h * ssize_t, uint8_t and uint16_t are now defined in libusb.h when required
Diffstat (limited to 'examples/xusb.c')
-rw-r--r--examples/xusb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/xusb.c b/examples/xusb.c
index 777a698..f90f2c9 100644
--- a/examples/xusb.c
+++ b/examples/xusb.c
@@ -24,7 +24,7 @@
#include <config.h>
#include <stdio.h>
-#include <inttypes.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>