/** * @file malloc.c * @brief Stub implementation of malloc. */ #include "malloc.h" #include "libft.h" void * malloc (size_t size) { (void)size; ft_putendl_fd ("MALLOC", 1); return (NULL); }