Get rid of HEAP_xrealloc.
diff --git a/debugger/debugger.h b/debugger/debugger.h
index 24d3bb4..1c7b9ed 100644
--- a/debugger/debugger.h
+++ b/debugger/debugger.h
@@ -451,8 +451,8 @@
work, etc... if someone could make optimized routines so it wouldn't
take so long to load, it could be made default) */
#include "heap.h"
-#define DBG_alloc(x) HEAP_xalloc(dbg_heap,0,x)
-#define DBG_realloc(x,y) HEAP_xrealloc(dbg_heap,0,x,y)
+#define DBG_alloc(x) HeapAlloc(dbg_heap,0,x)
+#define DBG_realloc(x,y) HeapRealloc(dbg_heap,0,x,y)
#define DBG_free(x) HeapFree(dbg_heap,0,x)
#define DBG_strdup(x) HEAP_strdupA(dbg_heap,0,x)
#define DBG_need_heap