diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-08-13 15:03:57 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-13 15:03:57 +0000 |
commit | 183f1531d3104acf453ac710b6dfc69b8bfc99a2 (patch) | |
tree | 78cd6cb66db4db3dfcbede2fd0061f7a45447bf0 /include | |
parent | 6dfe0ec31ed5ac5c9868b08bd8340a2101e8b667 (diff) | |
download | curl-183f1531d3104acf453ac710b6dfc69b8bfc99a2.tar.gz |
include curl-includes "local" instead of <curl/foo>
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 6 | ||||
-rw-r--r-- | include/curl/multi.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 7c7a47f9c..d4ce4cd43 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -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 */ diff --git a/include/curl/multi.h b/include/curl/multi.h index b1ca28b21..d84bd36e5 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -55,7 +55,7 @@ #include <sys/time.h> #endif -#include <curl/curl.h> +#include "curl.h" typedef void CURLM; |