-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexit.c
More file actions
19 lines (17 loc) · 952 Bytes
/
exit.c
File metadata and controls
19 lines (17 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* exit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: atilegen <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/25 16:01:51 by atilegen #+# #+# */
/* Updated: 2018/04/25 16:02:10 by atilegen ### ########.fr */
/* */
/* ************************************************************************** */
#include "fdf.h"
int end(void)
{
exit(0);
return (0);
}