include curl-includes "local" instead of <curl/foo>
authorDaniel Stenberg <daniel@haxx.se>
Tue, 13 Aug 2002 15:03:57 +0000 (15:03 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 13 Aug 2002 15:03:57 +0000 (15:03 +0000)
include/curl/curl.h
include/curl/multi.h

index 7c7a47f..d4ce4cd 100644 (file)
@@ -49,7 +49,7 @@
 #define FALSE 0
 #endif
 
-#include <curl/types.h>
+#include "types.h"
 
 #ifdef  __cplusplus
 extern "C" {
@@ -823,8 +823,8 @@ typedef enum {
 
 /* unfortunately, the easy.h and multi.h include files need options and info
   stuff before they can be included! */
-#include <curl/easy.h> /* nothing in curl is fun without the easy stuff */
-#include <curl/multi.h>
+#include "easy.h" /* nothing in curl is fun without the easy stuff */
+#include "multi.h"
 
 typedef enum {
   CURLCLOSEPOLICY_NONE, /* first, never use this */
index b1ca28b..d84bd36 100644 (file)
@@ -55,7 +55,7 @@
 #include <sys/time.h>
 #endif
 
-#include <curl/curl.h>
+#include "curl.h"
 
 typedef void CURLM;