From a778bc97e2c80efcffd7918f3023cc3cd1657454 Mon Sep 17 00:00:00 2001 From: Denis Monnerat Date: Thu, 3 Sep 2026 13:41:38 +0200 Subject: [PATCH] typo --- tp/tp1/src/ex2/heap.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) 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(); }