This commit is contained in:
Camille Chauvet 2023-01-24 16:15:20 +01:00
parent 2fd5e11a4a
commit 9f50aaea4e

View File

@ -14,7 +14,7 @@
void *ft_realloc(void *tab, size_t size, size_t new_size, int bytes)
{
char *new;
char *new;
size_t i;
new = ft_calloc(new_size, bytes);