fix wrong sigaction syscall ABI on mips*, or1k, microblaze, riscv64
[musl] / src / thread / clone.c
1 #include <errno.h>
2 #include "pthread_impl.h"
3
4 int __clone(int (*func)(void *), void *stack, int flags, void *arg, ...)
5 {
6         return -ENOSYS;
7 }