7 lines
93 B
C
7 lines
93 B
C
#include <signal.h>
|
|
#include <unistd.h>
|
|
|
|
int raise(int sig) {
|
|
return kill(getpid(), sig);
|
|
}
|