// M13_NEWARRAY.cpp // @topic W140330 Lab M13 demo, dynamic memory allocation // @brief extern function implementations #include "M13_NEWARRAY.h" // Function dynamically allocates array of characters of the specified size extern "C" char* __stdcall NEWARRAY( size_t size_ ) { return new char[ size_ ]; }