ORCALib/signal2.c
Stephen Heumann 97c3ecad73 ORCALib changes for GNO.
This is a reconstruction of the ORCALib source changes for the version of ORCALib distributed with GNO 2.0.6. The library built with this code should be identical to the original GNO one, apart from insignificant junk bytes at the ends of segments and the build date in the resource fork.
2020-02-19 12:19:41 -06:00

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);
}