-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_malloc.c
19 lines (17 loc) · 989 Bytes
/
ft_malloc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_malloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edelangh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/07 10:29:55 by edelangh #+# #+# */
/* Updated: 2014/12/02 20:15:22 by edelangh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdlib.h>
void *ft_malloc(size_t size)
{
return (malloc(size));
}