shithub: riscv

ref: a3c155704117d99f4c7486f9cf48d0a281997ff1
dir: /sys/src/ape/lib/ap/plan9/sigsuspend.c/

View raw version
#include <signal.h>
#include <errno.h>

/*
 * BUG: doesn't work
 */

int
sigsuspend(sigset_t *set)
{
	errno = EINVAL;
	return -1;
}