1#ifndef _CLONE3_H
2#include_next <clone3.h>
3
4extern __typeof (clone3) __clone3;
5
6/* The internal wrapper of clone/clone2 and clone3. If __clone3 returns
7 -1 with ENOSYS, fall back to clone or clone2. */
8extern int __clone_internal (struct clone_args *__cl_args,
9 int (*__func) (void *__arg), void *__arg);
10
11#ifndef _ISOMAC
12libc_hidden_proto (__clone3)
13libc_hidden_proto (__clone_internal)
14#endif
15
16#endif
17