Remove dollars from system call support symbols
This commit is contained in:
@ -29,8 +29,8 @@
|
||||
*/
|
||||
int flock(int fd, int op) {
|
||||
if (!IsWindows()) {
|
||||
return flock$sysv(fd, op);
|
||||
return sys_flock(fd, op);
|
||||
} else {
|
||||
return flock$nt(fd, op);
|
||||
return sys_flock_nt(fd, op);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user