mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Get rid of DEL() and FREE() macros.
Part of CoreLibExe must die.
This commit is contained in:
@ -155,15 +155,15 @@ struct LocAgeInfo
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
static void * XMLCALL XmlMalloc (size_t size) {
|
||||
return ALLOC(size);
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
static void * XMLCALL XmlRealloc (void * ptr, size_t size) {
|
||||
return REALLOC(ptr, size);
|
||||
return realloc(ptr, size);
|
||||
}
|
||||
|
||||
static void XMLCALL XmlFree (void * ptr) {
|
||||
FREE(ptr);
|
||||
free(ptr);
|
||||
}
|
||||
|
||||
XML_Memory_Handling_Suite gHeapAllocator = {
|
||||
|
Reference in New Issue
Block a user