blob: daf313eaf27edc784f77b0d2a7e47d7737daaa6d [file] [log] [blame]
/*
* fork.c
*
* This is normally just a syscall stub, but at least one system
* doesn't have sys_fork, only sys_clone...
*/
#include <sys/syscall.h>
#include <signal.h>
#include <unistd.h>
#ifndef __NR_fork
extern pid_t __clone(unsigned long flags, void * newsp);
pid_t fork(void)
{
return __clone(SIGCHLD, 0);
}
#endif /* __NR_fork */