chiark / gitweb /
[PATCH] tweak udev-test.pl to report '0' errors if that's what happened.
[elogind.git] / klibc / klibc / raise.c
1 /*
2  * raise.c
3  */
4
5 #include <unistd.h>
6 #include <signal.h>
7
8 int raise(int signal)
9 {
10   return kill(getpid(), signal);
11 }