]> granicus.if.org Git - curl/commitdiff
curl_memory.h: avoid the curl/curl.h include
authorDaniel Stenberg <daniel@haxx.se>
Thu, 31 Mar 2016 07:08:40 +0000 (09:08 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 1 Apr 2016 08:07:38 +0000 (10:07 +0200)
Discussed in #743

lib/curl_memory.h

index fcd177cd50944f8601466dbca5fe4dce1ba3b61e..637b24d9ff07da7b7d0cd57359fa839fb0aba2c2 100644 (file)
@@ -7,7 +7,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
 
 #ifndef CURLX_NO_MEMORY_CALLBACKS
 
-#include <curl/curl.h> /* for the callback typedefs */
+/*
+ * The following memory funciton replacement typedef's are COPIED from
+ * curl/curl.h and MUST match the originals. We copy them to avoid having to
+ * include curl/curl.h here. We avoid that include since it includes stdio.h
+ * and other headers that may get messed up with defines done here.
+ */
+typedef void *(*curl_malloc_callback)(size_t size);
+typedef void (*curl_free_callback)(void *ptr);
+typedef void *(*curl_realloc_callback)(void *ptr, size_t size);
+typedef char *(*curl_strdup_callback)(const char *str);
+typedef void *(*curl_calloc_callback)(size_t nmemb, size_t size);
+
 
 extern curl_malloc_callback Curl_cmalloc;
 extern curl_free_callback Curl_cfree;