Mercurial > ~dholland > hg > ag > index.cgi
view anagram/ag1/cppalloc.cpp @ 2:4b08ee1ecb99
Adjust install notes to clarify that Wine applies only to the Windows build.
(Thanks to Perry Metzger for test-driving.)
author | David A. Holland |
---|---|
date | Sun, 26 Apr 2009 17:58:26 -0400 |
parents | 13d2b8934445 |
children | 7661c1604e49 |
line wrap: on
line source
#include <stddef.h> #include "port.h" #include "myalloc.h" /* * With the IBM compiler these apparently may not be in a .lib file. */ void *operator new(size_t size) { //newCalls++; void *pointer = myalloc(size); return pointer; } void operator delete(void *p) { //deleteCalls++; DEALLOCATE(p); } void *operator new[](size_t size) { //newArrayCalls++; void *pointer = myalloc(size); return pointer; } void operator delete[](void *p) { //deleteArrayCalls++; DEALLOCATE(p); }