blob: 13bf72714a2283134f3b0beb77911c7aa2c464ed [file] [log] [blame]
#include <errno.h>
#include <signal.h>
int sigaltstack(const stack_t* restrict ss, stack_t* restrict old) {
errno = ENOSYS;
return -1;
}