aboutsummaryrefslogtreecommitdiff
#include <unistd.h>
#include "syscall.h"

int execve(const char *path, char *const argv[], char *const envp[])
{
	/* do we need to use environ if envp is null? */
	return syscall(SYS_execve, path, argv, envp);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif