NEW
# define NEW(constructor) new(kdebug_alloc) constructor
# define NEW(constructor) new(std::nothrow) constructor
#define NEW(t,n) ((t*) malloc( sizeof(t) * (n) ))
#define NEW(p) if (((p) = memget(sizeof *(p))) != NULL) \