mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
435a566751
* sumatrapdf - vendor import * everything compiles (libjpeg, poppler, fitz, sumatrapdf) * does NOT link (remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it) svn path=/trunk/; revision=29295
32 lines
561 B
C++
32 lines
561 B
C++
//========================================================================
|
|
//
|
|
// gmempp.cc
|
|
//
|
|
// Use gmalloc/gfree for C++ new/delete operators.
|
|
//
|
|
// Copyright 1996-2003 Glyph & Cog, LLC
|
|
//
|
|
//========================================================================
|
|
|
|
#include <config.h>
|
|
#include "gmem.h"
|
|
|
|
#ifdef DEBUG_MEM
|
|
|
|
void *operator new(size_t size) {
|
|
return gmalloc((int)size);
|
|
}
|
|
|
|
void *operator new[](size_t size) {
|
|
return gmalloc((int)size);
|
|
}
|
|
|
|
void operator delete(void *p) {
|
|
gfree(p);
|
|
}
|
|
|
|
void operator delete[](void *p) {
|
|
gfree(p);
|
|
}
|
|
|
|
#endif
|