// newaopnt -- operator new[](size_t, const nothrow_t&) REPLACEABLE #ifdef CRTDLL #undef CRTDLL #endif #ifdef MRTDLL #undef MRTDLL #endif #define _USE_ANSI_CPP // suppress defaultlib directive for Std C++ Lib #include void * __CRTDECL operator new[](::size_t count, const std::nothrow_t& x) _THROW0() { // try to allocate count bytes for an array return (operator new(count, x)); } /* * Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED. * Consult your license regarding permissions and restrictions. V3.10:0009 */