blob: 06ca79730eafb4827540e53a8e69c0b84b0c478b (
plain)
1
2
3
4
5
6
7
8
9
10
|
//////////////////////////////////////////////////
// this syscall will be move to newlib later!
#define SYSCALL_CLONE 83
int _clone(void)
{
return syscall(SYSCALL_CLONE,0,0,0);
}
//
|