-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathret_error.c
More file actions
20 lines (18 loc) · 1005 Bytes
/
ret_error.c
File metadata and controls
20 lines (18 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ret_error.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mlegendr <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/06 10:52:11 by mlegendr #+# #+# */
/* Updated: 2014/12/08 16:59:52 by mlegendr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft/includes/libft.h"
#include <stdlib.h>
void ret_error(char *str)
{
ft_putendl(str);
exit(0);
}