Revision history of "New.cpp"

Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 08:37, 9 March 2018Rickylone (talk | contribs). . (472 bytes) (+472). . (Created page with "<pre style="color:blue"> #include <new.h> void * operator new(size_t size) { return malloc(size); } void * operator new[](size_t size) { return malloc(size); } void ope...")