CSE320/hw3/src/main.c

13 lines
170 B
C
Raw Normal View History

#include <stdio.h>
#include "sfmm.h"
int main(int argc, char const *argv[]) {
2022-03-25 20:50:24 -04:00
sf_set_magic(0x0);
2022-03-25 21:13:36 -04:00
2022-03-25 21:51:46 -04:00
sf_malloc(4032);
2022-03-25 21:13:36 -04:00
sf_show_heap();
return EXIT_SUCCESS;
}