1 | #ifndef _CLONE3_H |
---|---|
2 | #include_next <clone3.h> |
3 | |
4 | extern __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. */ |
8 | extern int __clone_internal (struct clone_args *__cl_args, |
9 | int (*__func) (void *__arg), void *__arg); |
10 | |
11 | #ifndef _ISOMAC |
12 | libc_hidden_proto (__clone3) |
13 | libc_hidden_proto (__clone_internal) |
14 | #endif |
15 | |
16 | #endif |
17 |