mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-29 08:42:28 +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
|
@ -52,8 +52,8 @@ nodiscard int openat(int dirfd, const char *file, int flags, ...) {
|
|||
if (dirfd != AT_FDCWD) return einval();
|
||||
return weaken(__zipos_open)(&zipname, flags, mode);
|
||||
} else if (!IsWindows()) {
|
||||
return openat$sysv(dirfd, file, flags, mode);
|
||||
return sys_openat(dirfd, file, flags, mode);
|
||||
} else {
|
||||
return open$nt(dirfd, file, flags, mode);
|
||||
return sys_open_nt(dirfd, file, flags, mode);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue