aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLudovic Rousseau <ludovic.rousseau@gmail.com>2012-10-12 23:28:51 +0200
committerPete Batard <pete@akeo.ie>2012-10-13 18:34:45 +0100
commit38e6eb86b2ceb301d67fd4754c5a1493f7911ece (patch)
tree1e477a66cf114d25f2695681bc61c1bc7a590294 /examples
parent09759d5836766fb3b886824cd669bc0dfc149d00 (diff)
downloadandroid_external_libusbx-38e6eb86b2ceb301d67fd4754c5a1493f7911ece.tar.gz
android_external_libusbx-38e6eb86b2ceb301d67fd4754c5a1493f7911ece.tar.bz2
android_external_libusbx-38e6eb86b2ceb301d67fd4754c5a1493f7911ece.zip
All: Use "" instead of <> for local includes
System header files are used with #include <foo.h> Xcode can't find local headers using this syntax.
Diffstat (limited to 'examples')
-rw-r--r--examples/dpfp.c2
-rw-r--r--examples/dpfp_threaded.c2
-rw-r--r--examples/ezusb.c2
-rw-r--r--examples/fxload.c2
-rw-r--r--examples/listdevs.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/examples/dpfp.c b/examples/dpfp.c
index ff98b5d..3f41e0e 100644
--- a/examples/dpfp.c
+++ b/examples/dpfp.c
@@ -27,7 +27,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include <libusb.h>
+#include "libusb.h"
#define EP_INTR (1 | LIBUSB_ENDPOINT_IN)
#define EP_DATA (2 | LIBUSB_ENDPOINT_IN)
diff --git a/examples/dpfp_threaded.c b/examples/dpfp_threaded.c
index c8cbb28..6970dac 100644
--- a/examples/dpfp_threaded.c
+++ b/examples/dpfp_threaded.c
@@ -28,7 +28,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include <libusb.h>
+#include "libusb.h"
#define EP_INTR (1 | LIBUSB_ENDPOINT_IN)
#define EP_DATA (2 | LIBUSB_ENDPOINT_IN)
diff --git a/examples/ezusb.c b/examples/ezusb.c
index ce0eb83..4451816 100644
--- a/examples/ezusb.c
+++ b/examples/ezusb.c
@@ -25,7 +25,7 @@
#include <string.h>
#include <stdint.h>
-#include <libusb.h>
+#include "libusb.h"
#include "ezusb.h"
extern void logerror(const char *format, ...)
diff --git a/examples/fxload.c b/examples/fxload.c
index 31c090b..93f9fb9 100644
--- a/examples/fxload.c
+++ b/examples/fxload.c
@@ -38,7 +38,7 @@
#include <sys/types.h>
#include <getopt.h>
-#include <libusb.h>
+#include "libusb.h"
#include "ezusb.h"
#if !defined(_WIN32) || defined(__CYGWIN__ )
diff --git a/examples/listdevs.c b/examples/listdevs.c
index f47e87c..9f7e04e 100644
--- a/examples/listdevs.c
+++ b/examples/listdevs.c
@@ -20,7 +20,7 @@
#include <stdio.h>
#include <sys/types.h>
-#include <libusb.h>
+#include "libusb.h"
static void print_devs(libusb_device **devs)
{