ORCALib/signal2.c

11 lines
155 B
C

#ifdef __ORCAC__
segment "libc_sys__";
#endif
#include <gno/kerntool.h>
#include <errno.h>
int raise(int sig) {
return Kkill(Kgetpid(), sig, &errno);
}