1 #include <errno.h>
2 #include <unistd.h>
3 
fork(void)4 pid_t fork(void) {
5     errno = ENOSYS;
6     return -1;
7 }
8