Background: I\'m developing a multiplatform framework of sorts that will be used as base for both game and util/tool creation. The basic idea
If you're looking to write your own malloc()/free(), etc., you probably should start by checking out the source code for existing systems such as dlmalloc. This is a hard problem, though, for what it's worth. Writing your own malloc library is Hard. Beating existing general purpose malloc libraries will be Even Harder.