diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-03 16:28:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-03 16:28:59 +0000 |
commit | 834f07991809b5cd931a78def57f8320e5524ab8 (patch) | |
tree | d400e1c496b10a64ab751000dfeae87676013866 /include | |
parent | 2665c763dfed9057d2ca9058c12f53b256b487a7 (diff) |
fixed for persistant stuff
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 3c94af55f..6d89f28ec 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -467,8 +467,8 @@ struct curl_slist { struct curl_slist *next; }; -struct curl_slist *curl_slist_append(struct curl_slist *list, char *data); -void curl_slist_free_all(struct curl_slist *list); +struct curl_slist *curl_slist_append(struct curl_slist *, const char *); +void curl_slist_free_all(struct curl_slist *); /* * NAME curl_getdate() |