URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [execlp.c] - Rev 1765
Compare with Previous | Blame | View Log
/* * execlp() - POSIX 1003.1b 3.1.2 * * execlp.c,v 1.3 2001/01/24 14:17:28 joel Exp */ #if HAVE_CONFIG_H #include "config.h" #endif #include <errno.h> int execlp( const char *file, const char *arg, ... ) { errno = ENOSYS; return -1; }