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