Name: Anonymous 2010-07-24 6:51
implement
malloc() using the C programming language.
malloc() using the C programming language.
void *malloc(size_t size) { return sbrk(size); }