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