1#include <signal.h>
2
3#include <errno.h>
4
5int raise(int sig) {
6    errno = ENOSYS;
7    return -1;
8}
9