summaryrefslogtreecommitdiff
path: root/src/thread/clone.c
blob: be80c8ea4800d58f50526b842d864bb2e2e0804e (plain) (blame)
1
2
3
4
5
6
7
#include <errno.h>
#include "pthread_impl.h"

int __clone(int (*func)(void *), void *stack, int flags, void *arg, ...)
{
	return -ENOSYS;
}