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