fix getrlimit handling on 32-bit systems, and ease porting to 64-bit
[musl] / src / signal / raise.c
1 #include <signal.h>
2 #include "syscall.h"
3
4 int raise(int sig)
5 {
6         return __syscall_kill(__syscall_getpid(), sig);
7 }