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