-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.c
More file actions
19 lines (17 loc) · 972 Bytes
/
Copy patherror.c
File metadata and controls
19 lines (17 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* error.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rabduras <rabduras@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/16 15:12:31 by rabduras #+# #+# */
/* Updated: 2020/01/30 16:27:56 by rabduras ### ########.fr */
/* */
/* ************************************************************************** */
#include "fdf.h"
void error(char *message)
{
ft_putendl(message);
exit(1);
}