/* * execle() - POSIX 1003.1b 3.1.2 * * $Id$ */ #include int execle( const char *path, char const *arg, ... ) { errno = ENOSYS; return -1; }