Various additions and fixes.
This commit is contained in:
parent
74f990ad84
commit
fd04aacee1
57 changed files with 2176 additions and 159 deletions
9
src/lib9/exec.c
Normal file
9
src/lib9/exec.c
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#include <u.h>
|
||||
#include <libc.h>
|
||||
|
||||
int
|
||||
exec(char *prog, char *argv[])
|
||||
{
|
||||
/* to mimic plan 9 should be just exec, but execvp is a better fit for unix */
|
||||
return execvp(prog, argv);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue