aboutsummaryrefslogtreecommitdiff
path: root/8.7/malloc.h
diff options
context:
space:
mode:
Diffstat (limited to '8.7/malloc.h')
-rw-r--r--8.7/malloc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/8.7/malloc.h b/8.7/malloc.h
new file mode 100644
index 0000000..ca317fa
--- /dev/null
+++ b/8.7/malloc.h
@@ -0,0 +1,5 @@
+#include <stddef.h>
+
+void *my_malloc(size_t nbytes);
+void *my_calloc(size_t n ,size_t size);
+void my_free(void *ap);