/* * execvp() - POSIX 1003.1b 3.1.2 * * $Id$ */ #if HAVE_CONFIG_H #include "config.h" #endif #include int execvp( const char *path, char *const argv[] ) { errno = ENOSYS; return -1; }