#include "srcs/includes/malloc.h" #include int main(void) { int i; i = 0; while(i < 110) { malloc(256); i++; } show_alloc_mem(); }