summaryrefslogtreecommitdiff
path: root/src/heap.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/heap.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/heap.h b/src/heap.h
index fca28cb..1bfe47a 100644
--- a/src/heap.h
+++ b/src/heap.h
@@ -1,4 +1,4 @@
-/* $Id: heap.h,v 1.1 2002-05-23 04:41:10 rjkaes Exp $
+/* $Id: heap.h,v 1.2 2002-05-26 18:56:06 rjkaes Exp $
*
* See 'heap.c' for a detailed description.
*
@@ -46,4 +46,10 @@ extern char *debugging_strdup(const char* s, const char* file,
# define safestrdup(x) strdup(x)
#endif
+/*
+ * Allocate memory from the "shared" region of memory.
+ */
+extern void* malloc_shared_memory(size_t size);
+extern void* calloc_shared_memory(size_t nmemb, size_t size);
+
#endif