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