summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2004-01-13 02:21:06 +0000
committerIan C <ianc@noddybox.co.uk>2004-01-13 02:21:06 +0000
commit44ffbe36a8e7eaab7d7851bb79f229c4383c6545 (patch)
tree5ec706c58e940047021c0fd8665e96c6d3d50c58 /src/util.h
parent25bc35fbadebbf28eed3c89978e435d2df557b42 (diff)
Added breakpoints to memory menu and added extra GUI items. Plus general fixes.
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h5
1 files changed, 5 insertions, 0 deletions
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);