summaryrefslogtreecommitdiff
path: root/src/microhttpd/memorypool.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/memorypool.c')
-rw-r--r--src/microhttpd/memorypool.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/microhttpd/memorypool.c b/src/microhttpd/memorypool.c
index 9639d552..415b8aa5 100644
--- a/src/microhttpd/memorypool.c
+++ b/src/microhttpd/memorypool.c
@@ -25,6 +25,7 @@
* @author Karlson2k (Evgeny Grin)
*/
#include "memorypool.h"
+#include "internal.h"
#include "mhd_assert.h"
/* define MAP_ANONYMOUS for Mac OS X */
@@ -81,21 +82,6 @@ struct MemoryPool
/**
- * Free the memory given by @a ptr. Calls "free(ptr)". This function
- * should be used to free the username returned by
- * #MHD_digest_auth_get_username().
- * @note Since v0.9.56
- *
- * @param ptr pointer to free.
- */
-_MHD_EXTERN void
-MHD_free (void *ptr)
-{
- free (ptr);
-}
-
-
-/**
* Create a memory pool.
*
* @param max maximum size of the pool