Remove dollars from system call support symbols

This commit is contained in:
Justine Tunney 2021-02-03 19:35:29 -08:00
parent a8d7195777
commit a37960a3af
743 changed files with 1380 additions and 2016 deletions

View file

@ -52,7 +52,7 @@ textsyscall int mprotect(void *addr, uint64_t len, int prot) {
}
return rc;
} else {
if (__imp_VirtualProtect(addr, len, prot2nt(prot, 0), &oldprot)) {
if (__imp_VirtualProtect(addr, len, __prot2nt(prot, 0), &oldprot)) {
return 0;
} else {
return __winerr();