• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <unistd.h>
2 #include <unsupported_api.h>
3 
4 #include "syscall.h"
5 
fdatasync(int fd)6 int fdatasync(int fd)
7 {
8 	unsupported_api(__FUNCTION__);
9 	return syscall_cp(SYS_fdatasync, fd);
10 }
11