blob: ffe813439c18b33c70021c72819f44a824c73618 [file] [log] [blame]
rscfd04aac2003-11-23 18:12:54 +00001#include <u.h>
2#include <libc.h>
3
4int
5exec(char *prog, char *argv[])
6{
7 /* to mimic plan 9 should be just exec, but execvp is a better fit for unix */
8 return execvp(prog, argv);
9}