#include "nonstdlib.h" Memory* initializeHeap(unsigned long size){ /* you can add some code here if you want */ /* such as initializing hidden global varibales */ /* or initializig your table/stack /* your function should end with this line though */ return (Memory*) malloc( size*sizeof(Memory) ); };