Phoenix-RTOS: Add dummy implementation of fdatasync() syscall.
This commit is contained in:
parent
3302072436
commit
6325dbb30f
@ -43,3 +43,8 @@ int fsync(int fd)
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int fdatasync(int fd)
|
||||
{
|
||||
return fsync(fd);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user