Skip to content
Snippets Groups Projects
Commit 0bc516e0 authored by Dan Egnor's avatar Dan Egnor
Browse files

oop_realloc

parent 8d831d1b
Branches
No related tags found
No related merge requests found
......@@ -3,3 +3,4 @@
void *(*oop_malloc)(size_t) = malloc;
void (*oop_free)(void *) = free;
void *(*oop_realloc)(void *,size_t) = realloc;
......@@ -183,6 +183,7 @@ void oop_www_cancel() {
void oop_www_memory() {
oop_malloc = HTMemory_malloc;
oop_realloc = HTMemory_realloc;
oop_free = HTMemory_free;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment