blob: ffe813439c18b33c70021c72819f44a824c73618 (
plain)
1
2
3
4
5
6
7
8
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);
}
|