diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-04 15:32:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-04 15:32:44 +0000 |
commit | 5543c2f11fe9ae27db2f367ac99422888a3e526d (patch) | |
tree | fa720c7357ce5eef8789dc24ce0f5ddd628b7883 /include | |
parent | 90ac37a683820850e50d189cae0ee1b99c29d11b (diff) | |
download | curl-5543c2f11fe9ae27db2f367ac99422888a3e526d.tar.gz |
Added include of easy.h to enable libcurl-using programs to *only* have to
include <curl/curl.h>
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 6d89f28ec..d36e654d3 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -512,6 +512,10 @@ typedef enum { CURLINFO_LASTONE = 17 } CURLINFO; +/* unfortunately, the easy.h include file needs the options and info stuff + before it can be included! */ +#include <curl/easy.h> /* nothing in curl is fun without the easy stuff */ + /* * NAME curl_getinfo() * |