Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
ad1cd43a86645ba2d4f7c8747240452a349d6bc1
/
.
/
src
/
thread
/
clone.c
blob: be80c8ea4800d58f50526b842d864bb2e2e0804e [
file
] [
log
] [
blame
]
#include
<errno.h>
#include
"pthread_impl.h"
int
__clone
(
int
(*
func
)(
void
*),
void
*
stack
,
int
flags
,
void
*
arg
,
...)
{
return
-
ENOSYS
;
}