diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-20 12:47:56 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-20 17:36:39 +0530 |
commit | 6023a709ed2fb5e9d7c91c713255e227e3804f78 (patch) | |
tree | 218c685b1b949cde2372c1bfece6f090d7f438c2 /8.6/malloc.h | |
parent | f6901aab1fb07f8ee807afb7b76a3c69ff6a9370 (diff) |
8.6: initial commit
Diffstat (limited to '8.6/malloc.h')
-rw-r--r-- | 8.6/malloc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/8.6/malloc.h b/8.6/malloc.h new file mode 100644 index 0000000..ca317fa --- /dev/null +++ b/8.6/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); |