shithub: riscv

ref: bae3ac29fc39bc36329abf1823004c0d79b2f6f0
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;
}