Sign in
cobalt
/
cobalt
/
08336faa599332e3e3bf29b7ad38ef023018b55e
/
.
/
third_party
/
musl
/
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
;
}