Walter J. Mack added curl_free
authorDaniel Stenberg <daniel@haxx.se>
Wed, 25 Sep 2002 12:26:07 +0000 (12:26 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 25 Sep 2002 12:26:07 +0000 (12:26 +0000)
lib/escape.c
lib/libcurl.def

index bb8722e..0ec7ae5 100644 (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")
index 3ae1305..139cd19 100644 (file)
@@ -40,3 +40,4 @@ EXPORTS
        curl_multi_perform @ 31;
        curl_multi_cleanup @ 32;
        curl_multi_info_read @ 33;
+        curl_free @ 34;