1#include <errno.h>
2#include "pthread_impl.h"
3
4int __clone(int (*func)(void *), void *stack, int flags, void *arg, ...)
5{
6	return -ENOSYS;
7}
8