Skip to content

Commit

Permalink
Merge pull request #95 from biralavor/90-removing-exit-function
Browse files Browse the repository at this point in the history
removing exit function
  • Loading branch information
biralavor authored Nov 5, 2024
2 parents 4d490c6 + 971e464 commit c0276eb
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 c0276eb

Please sign in to comment.