summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/execve.c
blob: 7cfbe89674860f5b0024f0c3d1cb6f2c4b7ba4eb (plain)
1
2
3
4
5
6
7
8


#include <syscall.h> // for __syscall_3, syscall

int execve(const char *file, char *const argv[], char *const envp[])
{
	return syscall(execve, file, argv, envp);
}