15 lines
221 B
C
15 lines
221 B
C
#ifndef PHILO_H
|
|
# define PHILO_H
|
|
|
|
# include "libft.h"
|
|
# include <stdio.h>
|
|
# include <stdlib.h>
|
|
# include <string.h>
|
|
# include <unistd.h>
|
|
# include <pthread.h>
|
|
|
|
# include "philo_struct.h"
|
|
# include "philo_proto.h"
|
|
|
|
#endif
|