aboutsummaryrefslogtreecommitdiffstats
path: root/include/alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/alloc.h')
-rw-r--r--include/alloc.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/alloc.h b/include/alloc.h
index cdbdb37..82a4b7b 100644
--- a/include/alloc.h
+++ b/include/alloc.h
@@ -35,4 +35,11 @@ void *allocate(size_t);
*/
void release(void *);
+/*
+ * Return a pointer to the head of the free list. I can't recall
+ * precisely what I wanted this function called in the assignment,
+ * so this name may change when I get the chance to check.
+ */
+free_nd *free_list_head();
+
#endif