summaryrefslogtreecommitdiff
path: root/src/unistd/fsync.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/fsync.c')
-rw-r--r--src/unistd/fsync.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/fsync.c b/src/unistd/fsync.c
new file mode 100644
index 00000000..7cfedc98
--- /dev/null
+++ b/src/unistd/fsync.c
@@ -0,0 +1,8 @@
+#include <unistd.h>
+#include "syscall.h"
+
+int fsync(int fd)
+{
+ //return syscall1(__NR_fsync, fd);
+ return 0;
+}