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