Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorKuba Sejdak <jakub.sejdak@phoesys.com>2016-06-24 15:14:54 +0300
committerCorinna Vinschen <corinna@vinschen.de>2016-06-27 14:23:35 +0300
commit6325dbb30f4d8ee03ada1ec2eb55cbb577cc34cb (patch)
tree84c3b6f808a28905a3501103787ea5a5be07fc01 /newlib
parent3302072436f3b06a2d85f26d22c6c4727bc1d9b3 (diff)
Phoenix-RTOS: Add dummy implementation of fdatasync() syscall.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/libc/sys/phoenix/sync.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/newlib/libc/sys/phoenix/sync.c b/newlib/libc/sys/phoenix/sync.c
index de478c91d..6f726408d 100644
--- a/newlib/libc/sys/phoenix/sync.c
+++ b/newlib/libc/sys/phoenix/sync.c
@@ -43,3 +43,8 @@ int fsync(int fd)
return ret;
}
+
+int fdatasync(int fd)
+{
+ return fsync(fd);
+}