1570af302Sopenharmony_ci#include <unistd.h> 2570af302Sopenharmony_ci#include "syscall.h" 3570af302Sopenharmony_ci 4570af302Sopenharmony_ciint execve(const char *path, char *const argv[], char *const envp[]) 5570af302Sopenharmony_ci{ 6570af302Sopenharmony_ci /* do we need to use environ if envp is null? */ 7570af302Sopenharmony_ci return syscall(SYS_execve, path, argv, envp); 8570af302Sopenharmony_ci} 9