projet-systeme-exploitation.../utils.h

11 lines
165 B
C
Raw Normal View History

2021-05-23 14:22:11 +00:00
#ifndef __UTILS_H
#define __UTILS_H
int builtin();
void handler_sigchld(int sig_num);
void handler_sigint(int sig_num);
void handler_sigtstp(int sig_num);
2021-05-23 14:22:39 +00:00
#endif