### 구현방식 - [X] Implicit - [X] first fit - [x] #5 - [ ] #8 - [ ] #4 - [ ] #7 - [ ] Simple Segregated - [ ] Buddy System --- ### Main Files - [x] mm.{c,h} : Your solution malloc package. mm.c is the file that you will be handing in, and is the only file you should - [x] mm_init - [x] mm_malloc : Allocate a block by incrementing the brk pointer. - [x] mm_free : Freeing a block does nothing. - [x] mm_realloc : Implemented simply in terms of mm_malloc and mm_free