mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-24 06:12:27 +00:00
Remove dollars from system call support symbols
This commit is contained in:
parent
a8d7195777
commit
a37960a3af
743 changed files with 1380 additions and 2016 deletions
|
@ -35,8 +35,8 @@
|
|||
*/
|
||||
int execve(const char *program, char *const argv[], char *const envp[]) {
|
||||
if (!IsWindows()) {
|
||||
return execve$sysv(program, argv, envp);
|
||||
return sys_execve(program, argv, envp);
|
||||
} else {
|
||||
return execve$nt(program, argv, envp);
|
||||
return sys_execve_nt(program, argv, envp);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue