/* * vfork.c * * Emulate vfork() with fork() if necessary */ #include #include #include #if !_KLIBC_NO_MMU && !_KLIBC_REAL_VFORK int vfork(void) { return fork(); } #endif