Skip to content

Commit

Permalink
removing exit function
Browse files Browse the repository at this point in the history
  • Loading branch information
biralavor committed Nov 5, 2024
1 parent b1fb454 commit 971e464
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions philo/src/01.main.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: umeneses <umeneses@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/17 16:03:55 by umeneses #+# #+# */
/* Updated: 2024/11/04 18:50:31 by umeneses ### ########.fr */
/* Updated: 2024/11/05 11:14:01 by umeneses ### ########.fr */
/* */
/* ************************************************************************** */

Expand All @@ -17,10 +17,10 @@ int main(int ac, char **av)
t_table table;

if (!arguments_validation_manager(ac, av))
exit(EXIT_FAILURE);
return (EXIT_FAILURE);
table_parsing(&table, av);
table_init(&table);
dinner_manager(&table);
table_free(&table);
exit(EXIT_SUCCESS);
return (EXIT_SUCCESS);
}

0 comments on commit 971e464

Please sign in to comment.