void * malloc2 (size_t ptrsize){ return malloc(ptrsize); } void free2( void * ptr){ free(ptr); }