/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_memalloc.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 10:23:27 by scebula #+# #+# */ /* Updated: 2017/01/09 20:23:38 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void *ft_memalloc(size_t size) { void *p; p = malloc(size); if (p == NULL) { exit(-1); } else return (ft_memset(p, 0, size)); }