blob: 22c3faa7a1d4f54234b3716b0ccdcee0e18e9970 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* @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);
}
|