Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 1 | #include <unistd.h> |
2 | #include "syscall.h" | ||||
3 | |||||
4 | int fdatasync(int fd) | ||||
5 | { | ||||
Trutz Behn | 0b21a07 | 2015-01-28 18:46:54 +0100 | [diff] [blame] | 6 | return syscall_cp(SYS_fdatasync, fd); |
Rich Felker | 0b44a03 | 2011-02-12 00:22:29 -0500 | [diff] [blame] | 7 | } |