move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / process / execve.c
blob70286a17397da61e6dc31ff6db7f0c4dd2e77ef4
1 #include <unistd.h>
2 #include "syscall.h"
4 int execve(const char *path, char *const argv[], char *const envp[])
6 /* do we need to use environ if envp is null? */
7 return syscall(SYS_execve, path, argv, envp);