blob: f93b20d3ab3ba7d8f4b97e708e850006d5440f4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* not a posix function, but implemented with posix kill, getpid */
#include <sys/types.h>
#include <signal.h>
#include <unistd.h>
int
raise(int sig)
{
return kill(getpid(), sig);
}
|