void* malloc (unsigned bytes) { static char c[1000000]; int pos; int tmp=pos; pos+=bytes; return (void*)(c+tmp); } void free(void* p) { }