Phoenix-RTOS: Add dummy implementation of fdatasync() syscall.

This commit is contained in:
Kuba Sejdak 2016-06-24 14:14:54 +02:00 committed by Corinna Vinschen
parent 3302072436
commit 6325dbb30f
1 changed files with 5 additions and 0 deletions

View File

@ -43,3 +43,8 @@ int fsync(int fd)
return ret;
}
int fdatasync(int fd)
{
return fsync(fd);
}