github.com/afumu/libc@v0.0.6/musl/src/process/execve.c (about)

     1  #include <unistd.h>
     2  #include "syscall.h"
     3  
     4  int execve(const char *path, char *const argv[], char *const envp[])
     5  {
     6  	/* do we need to use environ if envp is null? */
     7  	return syscall(SYS_execve, path, argv, envp);
     8  }