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