Loading...
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include <mach-o/dyld-interposing.h>

void* mymalloc(size_t s)
{
	return malloc(s);
}

DYLD_INTERPOSE(mymalloc, malloc)