-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_error.c
19 lines (17 loc) · 986 Bytes
/
ft_error.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_error.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dlana <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/29 20:21:03 by dlana #+# #+# */
/* Updated: 2021/09/29 20:28:37 by dlana ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
void ft_error(void)
{
write(2, "Error\n", 6);
exit(EXIT_FAILURE);
}