-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_error.c
More file actions
19 lines (17 loc) · 982 Bytes
/
ft_error.c
File metadata and controls
19 lines (17 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_error.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dacuvill <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/12/18 13:03:31 by dacuvill #+# #+# */
/* Updated: 2019/01/19 18:49:42 by dacuvill ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft/libft.h"
void *ft_error(void)
{
ft_putstr("error\n");
return (NULL);
}