All: Use "" instead of <> for local includes
authorLudovic Rousseau <ludovic.rousseau@gmail.com>
Fri, 12 Oct 2012 21:28:51 +0000 (23:28 +0200)
committerPete Batard <pete@akeo.ie>
Sat, 13 Oct 2012 17:34:45 +0000 (18:34 +0100)
System header files are used with #include <foo.h>
Xcode can't find local headers using this syntax.

examples/dpfp.c
examples/dpfp_threaded.c
examples/ezusb.c
examples/fxload.c
examples/listdevs.c
libusb/libusbi.h
libusb/version_nano.h

index ff98b5ddadc202c2458e9dfa39a3df5620178fac..3f41e0e751539ca70a07173f966f0f8ab55ccbe3 100644 (file)
@@ -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)
index c8cbb28611b7b26b08b5cca9c821cabf109291d1..6970dac6719b40311fa2f24884ef1bd9f16c4e1e 100644 (file)
@@ -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)
index ce0eb8320631471e2a90016dcf3be2710e4bab4c..4451816ac3b75ebdbecc62e2728f64117ca9b91c 100644 (file)
@@ -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, ...)
index 31c090b5c4de8601de0dba903a2c9d30f0aa7fa6..93f9fb9d002fdebf2e2fc2dacce4d5a50bd2119a 100644 (file)
@@ -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__ )
index f47e87c7941a92d6c026f36c204eaaece01cb8d4..9f7e04ea30fe0f2926ff1f4a400d79383f3eab6b 100644 (file)
@@ -20,7 +20,7 @@
 #include <stdio.h>
 #include <sys/types.h>
 
-#include <libusb.h>
+#include "libusb.h"
 
 static void print_devs(libusb_device **devs)
 {
index 5ec0761e8eae2a5a6aba7bc80178de6cd7f71048..5e36c2848f1b8a08b3c2fc644a54166d9bf22772 100644 (file)
@@ -194,14 +194,14 @@ static inline void usbi_dbg(const char *format, ...)
 
 /* Internal abstractions for thread synchronization and poll */
 #if defined(THREADS_POSIX)
-#include <os/threads_posix.h>
+#include "os/threads_posix.h"
 #elif defined(OS_WINDOWS)
 #include <os/threads_windows.h>
 #endif
 
 #if defined(OS_LINUX) || defined(OS_DARWIN) || defined(OS_OPENBSD)
 #include <unistd.h>
-#include <os/poll_posix.h>
+#include "os/poll_posix.h"
 #elif defined(OS_WINDOWS)
 #include <os/poll_windows.h>
 #endif
index 7cb278ee64c64f8add0cc9899baebea6a4c9a536..05602071c51174bde1280f313e50830df3788c85 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 10577
+#define LIBUSB_NANO 10578