-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_free.c
20 lines (18 loc) · 980 Bytes
/
ft_free.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_free.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: edelangh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/01/23 11:59:43 by edelangh #+# #+# */
/* Updated: 2015/01/23 12:00:40 by edelangh ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <stdlib.h>
int ft_free(void *a)
{
free(a);
return (0);
}