Plan 9 from Bell Labs’s /usr/web/sources/contrib/rsc/linuxemu/libc/linux/9/exec.c
#include <u.h> #include <libc.h> #include "../syscall/syscall.h" extern char **environ; int exec(char *name, char *argv[]) { return linuxexecve(name, argv, environ); }