clone.c 140 B

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