musl/src/signal/sigfillset.c

9 lines
117 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <signal.h>
#include <string.h>
int sigfillset(sigset_t *set)
{
memset(set, -1, sizeof *set);
return 0;
}