clone.c raw

   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  }
   8