/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ #include #include #include extern char *const *environ; int execvp(const char *path, char * const argv[]) { return spawnvpe(P_OVERLAY, path, argv, environ); }