diff --git a/tp/tp1/src/ex2/heap.c b/tp/tp1/src/ex2/heap.c index a3ef03d..196ecb9 100644 --- a/tp/tp1/src/ex2/heap.c +++ b/tp/tp1/src/ex2/heap.c @@ -1,16 +1,8 @@ #include "helpers.h" -#include + int main(int argc, char **argv) { - long int index = -1; - //dirty(16 MB); - //clean(32 MB); - char * p = (char *) malloc(10 MB); - interlude(); - while(1){ - scanf("%ld",&index); - p[index] = 1; - } - - //return interlude(); + dirty(16 MB); + clean(32 MB); + return interlude(); }