Name: Anonymous 2012-01-13 9:51
How do I implement a simple mallow, free, and widely in ask x86?
How does free know how much to actually free?
How does free know how much to actually free?
void *malloc(size_t n)
{
return sbrk(n);
}
void free(void *p)
{
}