21 lines
991 B
C
21 lines
991 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* philo.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2024/07/07 15:10:29 by adjoly #+# #+# */
|
||
|
/* Updated: 2024/07/07 17:44:08 by adjoly ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "philo.h"
|
||
|
|
||
|
int main(int ac, char **av)
|
||
|
{
|
||
|
(void)ac;
|
||
|
(void)av;
|
||
|
log_philo(10, 5, DIED);
|
||
|
}
|