fix missing synchronization of pthread TSD keys with MT-fork
[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 }