1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 15:48:49 -05:00

include curl-includes "local" instead of <curl/foo>

This commit is contained in:
Daniel Stenberg 2002-08-13 15:03:57 +00:00
parent 6dfe0ec31e
commit 183f1531d3
2 changed files with 4 additions and 4 deletions

View 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 */

View File

@ -55,7 +55,7 @@
#include <sys/time.h>
#endif
#include <curl/curl.h>
#include "curl.h"
typedef void CURLM;