From 44ffbe36a8e7eaab7d7851bb79f229c4383c6545 Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 13 Jan 2004 02:21:06 +0000 Subject: Added breakpoints to memory menu and added extra GUI items. Plus general fixes. --- src/util.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/util.h') diff --git a/src/util.h b/src/util.h index f391170..6930b8a 100644 --- a/src/util.h +++ b/src/util.h @@ -37,6 +37,11 @@ void *Malloc(size_t size); +/* Returns result from realloc(p,size), calling Exit() if it fails. +*/ +void *Realloc(void *p, size_t size); + + /* Copies a string. The result must be freed. */ char *StrCopy(const char *source); -- cgit v1.2.3