URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems/] [c/] [src/] [exec/] [posix/] [src/] [execl.c] - Rev 208
Go to most recent revision | Compare with Previous | Blame | View Log
/* * execl() - POSIX 1003.1b 3.1.2 * * $Id: execl.c,v 1.2 2001-09-27 11:59:17 chris Exp $ */ #include <errno.h> int execl( const char *path, const char *arg, ... ) { errno = ENOSYS; return -1; }
Go to most recent revision | Compare with Previous | Blame | View Log