blob: 3895ae530c75de20300c2c5c8961c99d30befb1d [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include <unistd.h>
2#include "syscall.h"
3
4int fdatasync(int fd)
5{
Trutz Behn0b21a072015-01-28 18:46:54 +01006 return syscall_cp(SYS_fdatasync, fd);
Rich Felker0b44a032011-02-12 00:22:29 -05007}