URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [uclinux/] [uC-libc/] [misc/] [execvp.c] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
#include <unistd.h> extern char ** environ; int execvp(path, argv) const char * path; const char * argv[]; { return execvep(path, argv, environ); }
Go to most recent revision | Compare with Previous | Blame | View Log