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