////////////////////////////////////////////////// // this syscall will be move to newlib later! #define SYSCALL_CLONE 83 int _clone(void) { return syscall(SYSCALL_CLONE,0,0,0); } //