my solution to lab 6

This commit is contained in:
winPond
2019-07-17 16:08:06 +08:00
parent 8147d99448
commit c62da1c86d
534 changed files with 60875 additions and 6513 deletions

7
lab/inc/malloc.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef JOS_INC_MALLOC_H
#define JOS_INC_MALLOC_H 1
void *malloc(size_t size);
void free(void *addr);
#endif