rework langinfo code for ABI compat and for use by time code
[musl] / src / process / execve.c
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 }