Walter J. Mack added curl_free

This commit is contained in:
Daniel Stenberg 2002-09-25 12:26:07 +00:00
parent 3fc2c813cc
commit 6883f0c49f
2 changed files with 6 additions and 0 deletions

View File

@ -100,6 +100,11 @@ char *curl_unescape(const char *string, int length)
}
void curl_free(void *p)
{
free(p);
}
/*
* local variables:
* eval: (load-file "../curl-mode.el")

View File

@ -40,3 +40,4 @@ EXPORTS
curl_multi_perform @ 31;
curl_multi_cleanup @ 32;
curl_multi_info_read @ 33;
curl_free @ 34;