/** * @file free.c * @brief Stub implementation of free. */ #include "libft.h" #include "malloc.h" void free (void *ptr) { (void)ptr; ft_putendl_fd ("FREE", 1); }