1 #include <errno.h>
2 #include <signal.h>
3 
kill(pid_t pid,int sig)4 int kill(pid_t pid, int sig) {
5     errno = EPERM;
6     return -1;
7 }
8